Searched defs:brect (Results 1 - 3 of 3) sorted by relevance

/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DGeometry.h34 inline void ClipRect(double x, double y, BlendRect &brect) argument
36 if (y < brect.bot) brect.bot = y;
37 if (y > brect.top) brect.top = y;
38 if (x < brect.lft) brect.lft = x;
39 if (x > brect.rgt) brect.rgt = x;
42 inline void ClipRect(BlendRect rrect, BlendRect &brect) argument
[all...]
H A DMosaicTypes.h73 BlendRect brect; // This frame warped to the Mosaic coordinate system member in class:MosaicFrame
74 BlendRect vcrect; // brect clipped using the voronoi neighbors
H A DBlend.cpp164 FrameToMosaicRect(mb->width, mb->height, mb->trs, mb->brect);
166 ClipRect(mb->brect, global_rect);
410 mb->vcrect = mb->brect;
413 ComputeMask(csite, mb->vcrect, mb->brect, rect, imgMos, site_idx);
571 ProcessPyramidForThisFrame(csite, mb->vcrect, mb->brect, rect, imgMos, mb->trs, site_idx);
800 void Blend::ComputeMask(CSite *csite, BlendRect &vcrect, BlendRect &brect, MosaicRect &rect, YUVinfo &imgMos, int site_idx) argument
810 if (vcrect.lft == brect.lft)
815 if (vcrect.bot == brect.bot)
820 if (vcrect.rgt == brect.rgt)
825 if (vcrect.top == brect
870 ProcessPyramidForThisFrame(CSite *csite, BlendRect &vcrect, BlendRect &brect, MosaicRect &rect, YUVinfo &imgMos, double trs[3][3], int site_idx) argument
1124 ClipBlendRect(CSite *csite, BlendRect &brect) argument
1165 FrameToMosaicRect(int width, int height, double trs[3][3], BlendRect &brect) argument
[all...]

Completed in 196 milliseconds