HomeSort by relevance Sort by last modified time
    Searched full:brect (Results 1 - 14 of 14) sorted by null

  /development/perftests/panorama/feature_mos/src/mosaic/
Geometry.h 34 inline void ClipRect(double x, double y, BlendRect &brect)
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)
    [all...]
Blend.h 103 void FrameToMosaicRect(int width, int height, double trs[3][3], BlendRect &brect);
104 void ClipBlendRect(CSite *csite, BlendRect &brect);
108 void ComputeMask(CSite *csite, BlendRect &vcrect, BlendRect &brect, MosaicRect &rect, YUVinfo &imgMos, int site_idx);
109 void ProcessPyramidForThisFrame(CSite *csite, BlendRect &vcrect, BlendRect &brect, MosaicRect &rect, YUVinfo &imgMos, double trs[3][3], int site_idx);
Blend.cpp 159 FrameToMosaicRect(mb->width, mb->height, mb->trs, mb->brect);
161 ClipRect(mb->brect, global_rect);
395 mb->vcrect = mb->brect;
398 ComputeMask(csite, mb->vcrect, mb->brect, rect, imgMos, site_idx);
556 ProcessPyramidForThisFrame(csite, mb->vcrect, mb->brect, rect, imgMos, mb->trs, site_idx);
802 void Blend::ComputeMask(CSite *csite, BlendRect &vcrect, BlendRect &brect, MosaicRect &rect, YUVinfo &imgMos, int site_idx)
812 if (vcrect.lft == brect.lft)
817 if (vcrect.bot == brect.bot)
822 if (vcrect.rgt == brect.rgt)
827 if (vcrect.top == brect.top
    [all...]
MosaicTypes.h 73 BlendRect brect; // This frame warped to the Mosaic coordinate system member in class:MosaicFrame
74 BlendRect vcrect; // brect clipped using the voronoi neighbors
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Geometry.h 34 inline void ClipRect(double x, double y, BlendRect &brect)
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)
    [all...]
Blend.h 103 void FrameToMosaicRect(int width, int height, double trs[3][3], BlendRect &brect);
104 void ClipBlendRect(CSite *csite, BlendRect &brect);
108 void ComputeMask(CSite *csite, BlendRect &vcrect, BlendRect &brect, MosaicRect &rect, YUVinfo &imgMos, int site_idx);
109 void ProcessPyramidForThisFrame(CSite *csite, BlendRect &vcrect, BlendRect &brect, MosaicRect &rect, YUVinfo &imgMos, double trs[3][3], int site_idx);
MosaicTypes.h 73 BlendRect brect; // This frame warped to the Mosaic coordinate system member in class:MosaicFrame
74 BlendRect vcrect; // brect clipped using the voronoi neighbors
Blend.cpp 164 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);
820 void Blend::ComputeMask(CSite *csite, BlendRect &vcrect, BlendRect &brect, MosaicRect &rect, YUVinfo &imgMos, int site_idx)
830 if (vcrect.lft == brect.lft)
835 if (vcrect.bot == brect.bot)
840 if (vcrect.rgt == brect.rgt)
845 if (vcrect.top == brect.top
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Geometry.h 34 inline void ClipRect(double x, double y, BlendRect &brect)
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)
    [all...]
Blend.h 103 void FrameToMosaicRect(int width, int height, double trs[3][3], BlendRect &brect);
104 void ClipBlendRect(CSite *csite, BlendRect &brect);
108 void ComputeMask(CSite *csite, BlendRect &vcrect, BlendRect &brect, MosaicRect &rect, YUVinfo &imgMos, int site_idx);
109 void ProcessPyramidForThisFrame(CSite *csite, BlendRect &vcrect, BlendRect &brect, MosaicRect &rect, YUVinfo &imgMos, double trs[3][3], int site_idx);
Blend.cpp 164 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)
810 if (vcrect.lft == brect.lft)
815 if (vcrect.bot == brect.bot)
820 if (vcrect.rgt == brect.rgt)
825 if (vcrect.top == brect.top
    [all...]
MosaicTypes.h 73 BlendRect brect; // This frame warped to the Mosaic coordinate system member in class:MosaicFrame
74 BlendRect vcrect; // brect clipped using the voronoi neighbors
  /hardware/intel/img/hwcomposer/merrifield/common/base/
HwcLayerList.cpp 641 hwc_rect_t *bRect = &b->displayFrame;
643 if (bRect->right <= aRect->left ||
644 bRect->left >= aRect->right ||
645 bRect->top >= aRect->bottom ||
646 bRect->bottom <= aRect->top)
    [all...]
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
HwcLayerList.cpp 712 hwc_rect_t *bRect = &b->displayFrame;
714 if (bRect->right <= aRect->left ||
715 bRect->left >= aRect->right ||
716 bRect->top >= aRect->bottom ||
717 bRect->bottom <= aRect->top)

Completed in 456 milliseconds