HomeSort by relevance Sort by last modified time
    Searched refs:affine (Results 1 - 25 of 36) 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/Camera2/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/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/skia/tools/lua/
bitmap_statistics.lua 34 elseif matrixType.affine then
55 ", affine = ", num_affine_bitmaps,
  /external/pixman/pixman/
pixman-conical-gradient.c 66 pixman_bool_t affine = TRUE; local
96 affine =
101 if (affine)
  /external/libvpx/libvpx/vp9/common/
vp9_tapify.py 39 affine = [[math.cos(theta),-math.sin(theta)],
45 r,c = numpy.dot(affine,[y-radius, x-radius])
64 r,c = numpy.dot(affine,[y-7.5, x-7.5])
  /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/Camera2/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/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/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsContext.h 331 void concatCTM(const AffineTransform& affine) { concat(affine); }
332 void setCTM(const AffineTransform& affine) { setMatrix(affine); }
  /external/chromium_org/third_party/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
901 void SkMatrix::SetAffineIdentity(SkScalar affine[6]) {
902 affine[kAScaleX] = SK_Scalar1;
903 affine[kASkewY] = 0;
904 affine[kASkewX] = 0;
905 affine[kAScaleY] = SK_Scalar1
    [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
901 void SkMatrix::SetAffineIdentity(SkScalar affine[6]) {
902 affine[kAScaleX] = SK_Scalar1;
903 affine[kASkewY] = 0;
904 affine[kASkewX] = 0;
905 affine[kAScaleY] = SK_Scalar1
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkMatrix.h 111 /** Affine arrays are in column major order
364 /** Fills the passed array with affine identity values
366 @param affine The array to fill with affine identity values.
369 static void SetAffineIdentity(SkScalar affine[6]);
371 /** Fills the passed array with the affine values in column major order.
374 @param affine The array to fill with affine values. Ignored if NULL.
376 bool asAffine(SkScalar affine[6]) const;
  /external/skia/include/core/
SkMatrix.h 111 /** Affine arrays are in column major order
364 /** Fills the passed array with affine identity values
366 @param affine The array to fill with affine identity values.
369 static void SetAffineIdentity(SkScalar affine[6]);
371 /** Fills the passed array with the affine values in column major order.
374 @param affine The array to fill with affine values. Ignored if NULL.
376 bool asAffine(SkScalar affine[6]) const;
  /external/eigen/test/
geo_homogeneous.cpp 71 Transform<Scalar, Size, Affine> aff;
77 aff.affine().setRandom();
  /external/skia/tests/
MatrixTest.cpp 679 SkScalar affine[6]; local
680 REPORTER_ASSERT(reporter, mat.asAffine(affine));
682 #define affineEqual(e) affine[SkMatrix::kA##e] == mat.get(SkMatrix::kM##e)
692 REPORTER_ASSERT(reporter, !mat.asAffine(affine));

Completed in 668 milliseconds

1 2