Home
last modified time | relevance | path

Searched refs:transformType (Results 1 – 6 of 6) sorted by relevance

/frameworks/layoutlib/bridge/src/android/view/
DViewGroup_Delegate.java143 final int transformType = t.getTransformationType(); in transformCanvas() local
144 transformToApply = transformType != Transformation.TYPE_IDENTITY ? t : null; in transformCanvas()
145 concatMatrix = (transformType & Transformation.TYPE_MATRIX) != 0; in transformCanvas()
/frameworks/native/opengl/tests/hwc/
DhwcCommit.cpp134 const struct transformType { struct
137 } transformType[] = { argument
680 for (unsigned int idx = 0; idx < NUMA(transformType); idx++) { in supportedTransforms()
681 unsigned int id = transformType[idx].id; in supportedTransforms()
1465 for (unsigned int idx = 0; idx < NUMA(transformType); idx++) { in transformList2str()
1466 if (id == transformType[idx].id) { in transformList2str()
1467 out << " (" << transformType[idx].desc << ')'; in transformList2str()
/frameworks/native/opengl/libs/GLES2/
Dgl2ext_api.in1150 void API_ENTRY(glTransformPathNV)(GLuint resultPath, GLuint srcPath, GLenum transformType, const GL…
1151 CALL_GL_API(glTransformPathNV, resultPath, srcPath, transformType, transformValues);
1180 …st void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat…
1181 …InstancedNV, numPaths, pathNameType, paths, pathBase, fillMode, mask, transformType, transformValu…
1183 …st void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat…
1184 …nstancedNV, numPaths, pathNameType, paths, pathBase, reference, mask, transformType, transformValu…
1195 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat…
1196 …lPathInstancedNV, numPaths, pathNameType, paths, pathBase, coverMode, transformType, transformValu…
1198 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat…
1199 …ePathInstancedNV, numPaths, pathNameType, paths, pathBase, coverMode, transformType, transformValu…
[all …]
/frameworks/native/opengl/include/GLES2/
Dgl2ext.h3093 … PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat…
3103 …st void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat…
3104 …st void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat…
3108 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat…
3109 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat…
3117 …, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *retu…
3130 …uint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat…
3131 …uint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat…
3170 …APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat…
3180 …st void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat…
[all …]
/frameworks/native/opengl/libs/
Dentries.in123 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat…
125 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat…
393 …, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *retu…
829 …st void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat…
837 …st void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat…
839 …uint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat…
841 …uint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat…
910 GL_ENTRY(void, glTransformPathNV, GLuint resultPath, GLuint srcPath, GLenum transformType, const GL…
/frameworks/base/core/java/android/view/
DView.java21962 final int transformType = t.getTransformationType(); in setDisplayListProperties() local
21963 if (transformType != Transformation.TYPE_IDENTITY) { in setDisplayListProperties()
21964 if ((transformType & Transformation.TYPE_ALPHA) != 0) { in setDisplayListProperties()
21967 if ((transformType & Transformation.TYPE_MATRIX) != 0) { in setDisplayListProperties()
22036 final int transformType = t.getTransformationType(); in draw() local
22037 transformToApply = transformType != Transformation.TYPE_IDENTITY ? t : null; in draw()
22038 concatMatrix = (transformType & Transformation.TYPE_MATRIX) != 0; in draw()