Home | History | Annotate | Download | only in liboverlay

Lines Matching defs:Whf

97 struct Whf;
165 struct Whf {
166 Whf() : w(0), h(0), format(0), size(0) {}
167 Whf(uint32_t wi, uint32_t he, uint32_t f) :
169 Whf(uint32_t wi, uint32_t he, uint32_t f, uint32_t s) :
172 bool operator==(const Whf& whf) const {
173 return whf.w == w && whf.h == h &&
174 whf.format == format;
176 bool operator!=(const Whf& whf) const {
177 return !operator==(whf);
320 PipeArgs(eMdpFlags f, Whf _whf,
324 whf(_whf),
332 Whf whf;
497 inline void Whf::dump() const {
498 ALOGE("== Dump WHF w=%d h=%d f=%d s=%d start/end ==",
544 void preRotateSource(const eTransform& tr, Whf& whf, Dim& srcCrop);