HomeSort by relevance Sort by last modified time
    Searched refs:affine (Results 1 - 25 of 29) 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/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);
GraphicsContextCairo.cpp 80 AffineTransform affine; local
81 pattern = state.fillPattern->createPlatformPattern(affine);
101 AffineTransform affine; local
102 pattern = state.strokePattern->createPlatformPattern(affine);
    [all...]
  /external/skia/tests/
MatrixTest.cpp 225 SkScalar affine[6]; local
226 REPORTER_ASSERT(reporter, mat.asAffine(affine));
228 #define affineEqual(e) affine[SkMatrix::kA##e] == mat.get(SkMatrix::kM##e)
238 REPORTER_ASSERT(reporter, !mat.asAffine(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/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/
PlatformGraphicsContextRecording.h 72 virtual void concatCTM(const AffineTransform& affine);
PlatformGraphicsContextSkia.h 56 virtual void concatCTM(const AffineTransform& affine);
PlatformGraphicsContextRecording.cpp 168 void PlatformGraphicsContextRecording::concatCTM(const AffineTransform& affine)
170 mCurrentMatrix.preConcat(affine);
171 mGraphicsOperationCollection->append(new GraphicsOperation::ConcatCTM(affine));
GraphicsContextAndroid.cpp 511 void GraphicsContext::concatCTM(const AffineTransform& affine)
515 platformContext()->concatCTM(affine);
PlatformGraphicsContext.h 86 virtual void concatCTM(const AffineTransform& affine) = 0;
GraphicsOperation.h 425 ConcatCTM(const AffineTransform& affine) : m_matrix(affine) {}
PlatformGraphicsContextSkia.cpp 124 void PlatformGraphicsContextSkia::concatCTM(const AffineTransform& affine)
126 mCanvas->concat(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));
GraphicsContextQt.cpp 506 AffineTransform affine; local
508 shadowPainter->fillPath(platformPath, QBrush(m_state.fillPattern->createPlatformPattern(affine)));
531 AffineTransform affine; local
532 p->fillPath(platformPath, QBrush(m_state.fillPattern->createPlatformPattern(affine)));
585 AffineTransform affine; local
586 pen.setBrush(QBrush(m_state.strokePattern->createPlatformPattern(affine)));
906 // affine transform matrix to device space can mess with this conversion if we have a
908 // we get the affine transform matrix and extract the scale.
    [all...]
  /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/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/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 543 milliseconds

1 2