OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cropi
(Results
1 - 3
of
3
) sorted by null
/hardware/qcom/display/msm8974/libhwcomposer/
hwc_utils.h
157
hwc_rect_t
cropI
= {0};
158
cropI
.left = int(ceilf(cropF.left));
159
cropI
.top = int(ceilf(cropF.top));
160
cropI
.right = int(floorf(cropF.right));
161
cropI
.bottom = int(floorf(cropF.bottom));
162
return
cropI
;
/hardware/qcom/display/msm8084/libhwcomposer/
hwc_utils.h
205
hwc_rect_t
cropI
= {0,0,0,0};
206
cropI
.left = int(ceilf(cropF.left));
207
cropI
.top = int(ceilf(cropF.top));
208
cropI
.right = int(floorf(cropF.right));
209
cropI
.bottom = int(floorf(cropF.bottom));
210
return
cropI
;
/hardware/qcom/display/msm8226/libhwcomposer/
hwc_utils.h
226
hwc_rect_t
cropI
= {0,0,0,0};
227
cropI
.left = int(ceilf(cropF.left));
228
cropI
.top = int(ceilf(cropF.top));
229
cropI
.right = int(floorf(cropF.right));
230
cropI
.bottom = int(floorf(cropF.bottom));
231
return
cropI
;
Completed in 332 milliseconds