/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
D | ViewGroup_Delegate.java | 118 final int transformType = t.getTransformationType(); in transformCanvas() local 119 transformToApply = transformType != Transformation.TYPE_IDENTITY ? t : null; in transformCanvas() 120 concatMatrix = (transformType & Transformation.TYPE_MATRIX) != 0; in transformCanvas()
|
/frameworks/native/opengl/libs/GLES2/ |
D | gl2ext_api.in | 853 void API_ENTRY(glTransformPathNV)(GLuint resultPath, GLuint srcPath, GLenum transformType, const GL… 854 CALL_GL_API(glTransformPathNV, resultPath, srcPath, transformType, transformValues); 883 …st void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat… 884 …InstancedNV, numPaths, pathNameType, paths, pathBase, fillMode, mask, transformType, transformValu… 886 …st void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat… 887 …nstancedNV, numPaths, pathNameType, paths, pathBase, reference, mask, transformType, transformValu… 898 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat… 899 …lPathInstancedNV, numPaths, pathNameType, paths, pathBase, coverMode, transformType, transformValu… 901 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat… 902 …ePathInstancedNV, numPaths, pathNameType, paths, pathBase, coverMode, transformType, transformValu… [all …]
|
/frameworks/native/opengl/tests/hwc/ |
D | hwcCommit.cpp | 134 const struct transformType { struct 137 } transformType[] = { argument 678 for (unsigned int idx = 0; idx < NUMA(transformType); idx++) { in supportedTransforms() 679 unsigned int id = transformType[idx].id; in supportedTransforms() 1463 for (unsigned int idx = 0; idx < NUMA(transformType); idx++) { in transformList2str() 1464 if (id == transformType[idx].id) { in transformList2str() 1465 out << " (" << transformType[idx].desc << ')'; in transformList2str()
|
/frameworks/native/opengl/include/GLES2/ |
D | gl2ext.h | 2529 … PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat… 2539 …st void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat… 2540 …st void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat… 2544 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat… 2545 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat… 2553 …, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *retu… 2566 …uint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat… 2567 …uint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat… 2587 …APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat… 2597 …st void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat… [all …]
|
/frameworks/native/opengl/libs/ |
D | entries.in | 116 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat… 118 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat… 365 …, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *retu… 741 …st void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat… 749 …st void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat… 751 …uint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat… 753 …uint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat… 813 GL_ENTRY(void, glTransformPathNV, GLuint resultPath, GLuint srcPath, GLenum transformType, const GL…
|
/frameworks/base/core/java/android/view/ |
D | View.java | 18728 final int transformType = t.getTransformationType(); 18729 if (transformType != Transformation.TYPE_IDENTITY) { 18730 if ((transformType & Transformation.TYPE_ALPHA) != 0) { 18733 if ((transformType & Transformation.TYPE_MATRIX) != 0) { 18802 final int transformType = t.getTransformationType(); 18803 transformToApply = transformType != Transformation.TYPE_IDENTITY ? t : null; 18804 concatMatrix = (transformType & Transformation.TYPE_MATRIX) != 0;
|