Lines Matching refs:utils
23 namespace ovutils = overlay::utils;
78 void MdpRot::setSource(const overlay::utils::Whf& awhf) { in setSource()
79 utils::Whf whf(awhf); in setSource()
84 whf.w = utils::alignup(awhf.w, 64); in setSource()
85 whf.h = utils::alignup(awhf.h, 32); in setSource()
100 void MdpRot::setFlags(const utils::eMdpFlags& flags) { in setFlags()
102 if(flags & utils::OV_MDP_SECURE_OVERLAY_SESSION) in setFlags()
106 void MdpRot::setTransform(const utils::eTransform& rot, const bool& rotUsed) in setTransform()
108 int r = utils::getMdpOrient(rot); in setTransform()
112 mOrientation = static_cast<utils::eTransform>(r); in setTransform()
122 if(mOrientation & utils::OVERLAY_TRANSFORM_ROT_90) in doTransform()
123 utils::swap(mRotImgInfo.dst.width, mRotImgInfo.dst.height); in doTransform()
213 mOrientation = utils::OVERLAY_TRANSFORM_0; in reset()