Home | History | Annotate | Download | only in liboverlay

Lines Matching refs:rot

58 bool startRotator(int fd, msm_rotator_img_info& rot);
61 bool rotate(int fd, msm_rotator_data_info& rot);
92 void dump(const char* const s, const msm_rotator_img_info& rot);
93 void dump(const char* const s, const msm_rotator_data_info& rot);
128 inline bool startRotator(int fd, msm_rotator_img_info& rot) {
129 if (ioctl(fd, MSM_ROTATOR_IOCTL_START, &rot) < 0){
137 inline bool rotate(int fd, msm_rotator_data_info& rot) {
138 if (ioctl(fd, MSM_ROTATOR_IOCTL_ROTATE, &rot) < 0) {
245 inline void dump(const char* const s, const msm_rotator_img_info& rot) {
246 ALOGE("%s msm_rotator_img_info sessid=%u dstx=%d dsty=%d rot=%d, ena=%d scale=%d",
247 s, rot.session_id, rot.dst_x, rot.dst_y,
248 rot.rotations, rot.enable, rot.downscale_ratio);
249 dump("src", rot.src);
250 dump("dst", rot.dst);
251 dump("src_rect", rot.src_rect);
253 inline void dump(const char* const s, const msm_rotator_data_info& rot) {
255 s, rot.session_id, rot.version_key);
256 dump("src", rot.src);
257 dump("dst", rot.dst);
258 dump("src_chroma", rot.src_chroma);
259 dump("dst_chroma", rot.dst_chroma);