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);
330 PipeArgs(eMdpFlags f, Whf _whf,
334 whf(_whf),
343 Whf whf;
507 inline void Whf::dump() const {
508 ALOGE("== Dump WHF w=%d h=%d f=%d s=%d start/end ==",
554 void preRotateSource(const eTransform& tr, Whf& whf, Dim& srcCrop);