/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/ |
H A D | MediaHierarchyManagerTest.kt | 217 val transformType = mediaHiearchyManager.calculateTransformationType() regex 219 transformType == MediaHierarchyManager.TRANSFORMATION_TYPE_FADE) 235 val transformType = mediaHiearchyManager.calculateTransformationType() regex 237 transformType == MediaHierarchyManager.TRANSFORMATION_TYPE_FADE)
|
/aosp12/frameworks/layoutlib/bridge/src/android/view/ |
H A D | ViewGroup_Delegate.java | 143 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()
|
/aosp12/hardware/qcom/display/msm8084/libcopybit/ |
H A D | c2dExt.h | 56 …uint32 transformType; /*!< (C2D_LENSCORRECT_AFFINE or C2D_LENSCORRECT_PERSPECTIVE) +… member
|
/aosp12/frameworks/native/opengl/tests/hwc/ |
H A D | hwcCommit.cpp | 134 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()
|
/aosp12/frameworks/native/opengl/libs/GLES2/ |
H A D | gl2ext_api.in | 1150 void API_ENTRY(glTransformPathNV)(GLuint resultPath, GLuint srcPath, GLenum transformType, const GL… 1151 CALL_GL_API(glTransformPathNV, resultPath, srcPath, transformType, transformValues); 1181 …InstancedNV, numPaths, pathNameType, paths, pathBase, fillMode, mask, transformType, transformValu… 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… 1223 … numPaths, pathNameType, paths, pathBase, advanceScale, kerningScale, transformType, returnedSpaci… 1262 …, numPaths, pathNameType, paths, pathBase, fillMode, mask, coverMode, transformType, transformValu… [all …]
|
/aosp12/frameworks/native/opengl/include/GLES2/ |
H A D | gl2ext.h | 3093 … 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… 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… 3181 …st void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat… 3185 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat… 3186 …ameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat… [all …]
|
/aosp12/frameworks/native/opengl/libs/ |
H A D | entries.in | 123 …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…
|
/aosp12/frameworks/base/core/java/android/view/ |
H A D | View.java | 22315 final int transformType = t.getTransformationType(); in setDisplayListProperties() local 22316 if (transformType != Transformation.TYPE_IDENTITY) { in setDisplayListProperties() 22317 if ((transformType & Transformation.TYPE_ALPHA) != 0) { in setDisplayListProperties() 22320 if ((transformType & Transformation.TYPE_MATRIX) != 0) { in setDisplayListProperties() 22390 final int transformType = t.getTransformationType(); in draw() local 22391 transformToApply = transformType != Transformation.TYPE_IDENTITY ? t : null; in draw() 22392 concatMatrix = (transformType & Transformation.TYPE_MATRIX) != 0; in draw()
|