HomeSort by relevance Sort by last modified time
    Searched refs:affine (Results 1 - 25 of 41) sorted by null

1 2

  /packages/apps/Camera/jni/feature_mos/src/mosaic_renderer/
SurfaceTextureRenderer.h 21 bool DrawTexture(GLfloat *affine);
WarpRenderer.h 24 bool DrawTexture(GLfloat *affine);
WarpRenderer.cpp 108 bool WarpRenderer::DrawTexture(GLfloat *affine)
143 glUniformMatrix4fv(mAffinetransLoc, 1, GL_FALSE, affine);
SurfaceTextureRenderer.cpp 117 bool SurfaceTextureRenderer::DrawTexture(GLfloat *affine)
  /packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic_renderer/
SurfaceTextureRenderer.h 21 bool DrawTexture(GLfloat *affine);
WarpRenderer.h 24 bool DrawTexture(GLfloat *affine);
WarpRenderer.cpp 108 bool WarpRenderer::DrawTexture(GLfloat *affine)
143 glUniformMatrix4fv(mAffinetransLoc, 1, GL_FALSE, affine);
SurfaceTextureRenderer.cpp 117 bool SurfaceTextureRenderer::DrawTexture(GLfloat *affine)
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic_renderer/
SurfaceTextureRenderer.h 21 bool DrawTexture(GLfloat *affine);
WarpRenderer.h 24 bool DrawTexture(GLfloat *affine);
WarpRenderer.cpp 108 bool WarpRenderer::DrawTexture(GLfloat *affine)
143 glUniformMatrix4fv(mAffinetransLoc, 1, GL_FALSE, affine);
SurfaceTextureRenderer.cpp 117 bool SurfaceTextureRenderer::DrawTexture(GLfloat *affine)
  /external/webkit/Source/WebCore/platform/graphics/cairo/
FontCairo.cpp 126 AffineTransform affine; local
127 cairo_pattern_t* pattern = context->fillPattern()->createPlatformPattern(affine);
156 AffineTransform affine; local
157 cairo_pattern_t* pattern = context->strokePattern()->createPlatformPattern(affine);
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_feature_matching.h 164 * appropriate buckets. If H is an affine transform and the "affine" parameter is set to 1 or 2,
229 * \param affine prewarp the 11x11 patches by given affine transform. 0 means no warping,
234 int *id_l,int *id_r,int *nr_matches,const double H[9]=0,int affine=0);
  /packages/apps/Gallery2/jni_mosaic/feature_stab/db_vlvm/
db_feature_matching.h 164 * appropriate buckets. If H is an affine transform and the "affine" parameter is set to 1 or 2,
229 * \param affine prewarp the 11x11 patches by given affine transform. 0 means no warping,
234 int *id_l,int *id_r,int *nr_matches,const double H[9]=0,int affine=0);
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_feature_matching.h 164 * appropriate buckets. If H is an affine transform and the "affine" parameter is set to 1 or 2,
229 * \param affine prewarp the 11x11 patches by given affine transform. 0 means no warping,
234 int *id_l,int *id_r,int *nr_matches,const double H[9]=0,int affine=0);
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextSkia.h 56 virtual void concatCTM(const AffineTransform& affine);
GraphicsContextAndroid.cpp 516 void GraphicsContext::concatCTM(const AffineTransform& affine)
520 platformContext()->concatCTM(affine);
  /external/skia/tests/
MatrixTest.cpp 432 SkScalar affine[6]; local
433 REPORTER_ASSERT(reporter, mat.asAffine(affine));
435 #define affineEqual(e) affine[SkMatrix::kA##e] == mat.get(SkMatrix::kM##e)
445 REPORTER_ASSERT(reporter, !mat.asAffine(affine));
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontQt.cpp 90 AffineTransform affine; local
91 textFillPen = QPen(QBrush(ctx->fillPattern()->createPlatformPattern(affine)), 0);
103 AffineTransform affine; local
104 QBrush brush(ctx->strokePattern()->createPlatformPattern(affine));
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 430 void GraphicsContext::concatCTM(const AffineTransform& affine)
436 platformContext()->gpuCanvas()->concatCTM(affine);
438 platformContext()->canvas()->concat(affine);
441 void GraphicsContext::setCTM(const AffineTransform& affine)
447 platformContext()->gpuCanvas()->setCTM(affine);
449 platformContext()->canvas()->setMatrix(affine);
    [all...]
  /external/skia/legacy/src/core/
SkMatrix.cpp 796 void SkMatrix::SetAffineIdentity(SkScalar affine[6]) {
797 affine[kAScaleX] = SK_Scalar1;
798 affine[kASkewY] = 0;
799 affine[kASkewX] = 0;
800 affine[kAScaleY] = SK_Scalar1;
801 affine[kATransX] = 0;
802 affine[kATransY] = 0;
805 bool SkMatrix::asAffine(SkScalar affine[6]) const {
809 if (affine) {
810 affine[kAScaleX] = this->fMat[kMScaleX]
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 117 // along with affine.
122 // For rectStaysRect, in the affine case, we only need check that
135 // Only test for scale explicitly if not affine, since affine sets the
141 // Not affine, therefore we already know secondary diagonal is
862 void SkMatrix::SetAffineIdentity(SkScalar affine[6]) {
863 affine[kAScaleX] = SK_Scalar1;
864 affine[kASkewY] = 0;
865 affine[kASkewX] = 0;
866 affine[kAScaleY] = SK_Scalar1
    [all...]
  /external/skia/include/core/
SkMatrix.h 105 /** Affine arrays are in column major order
358 /** Fills the passed array with affine identity values
360 @param affine The array to fill with affine identity values.
363 static void SetAffineIdentity(SkScalar affine[6]);
365 /** Fills the passed array with the affine values in column major order.
368 @param affine The array to fill with affine values. Ignored if NULL.
370 bool asAffine(SkScalar affine[6]) const;
  /external/skia/legacy/include/core/
SkMatrix.h 99 /** Affine arrays are in column major order
341 /** Fills the passed array with affine identity values
343 @param affine The array to fill with affine identity values.
346 static void SetAffineIdentity(SkScalar affine[6]);
348 /** Fills the passed array with the affine values in column major order.
351 @param affine The array to fill with affine values. Ignored if NULL.
353 bool asAffine(SkScalar affine[6]) const;

Completed in 857 milliseconds

1 2