Home | History | Annotate | Download | only in liboverlay

Lines Matching refs:rot

60 bool startRotator(int fd, msm_rotator_img_info& rot);
63 bool rotate(int fd, msm_rotator_data_info& rot);
115 void dump(const char* const s, const msm_rotator_img_info& rot);
116 void dump(const char* const s, const msm_rotator_data_info& rot);
151 inline bool startRotator(int fd, msm_rotator_img_info& rot) {
152 if (ioctl(fd, MSM_ROTATOR_IOCTL_START, &rot) < 0){
160 inline bool rotate(int fd, msm_rotator_data_info& rot) {
161 if (ioctl(fd, MSM_ROTATOR_IOCTL_ROTATE, &rot) < 0) {
341 inline void dump(const char* const s, const msm_rotator_img_info& rot) {
342 ALOGE("%s msm_rotator_img_info sessid=%u dstx=%d dsty=%d rot=%d, ena=%d scale=%d",
343 s, rot.session_id, rot.dst_x, rot.dst_y,
344 rot.rotations, rot.enable, rot.downscale_ratio);
345 dump("src", rot.src);
346 dump("dst", rot.dst);
347 dump("src_rect", rot.src_rect);
349 inline void dump(const char* const s, const msm_rotator_data_info& rot) {
351 s, rot.session_id, rot.version_key);
352 dump("src", rot.src);
353 dump("dst", rot.dst);
354 dump("src_chroma", rot.src_chroma);
355 dump("dst_chroma", rot.dst_chroma);