/frameworks/native/opengl/libagl/ |
D | array.cpp | 107 c->arrays.vertex.size = 4; in ogles_init_array() 108 c->arrays.vertex.type = GL_FLOAT; in ogles_init_array() 109 c->arrays.color.size = 4; in ogles_init_array() 110 c->arrays.color.type = GL_FLOAT; in ogles_init_array() 111 c->arrays.normal.size = 4; in ogles_init_array() 112 c->arrays.normal.type = GL_FLOAT; in ogles_init_array() 114 c->arrays.texture[i].size = 4; in ogles_init_array() 115 c->arrays.texture[i].type = GL_FLOAT; in ogles_init_array() 146 memcpy(v, c->current.texture[c->arrays.tmu].v, sizeof(vec4_t)); in currentTexCoord() 436 const int tmu = c->arrays.activeTexture; in enableDisableClientState() [all …]
|
D | primitives.cpp | 78 const GLvoid* cp = c->arrays.color.element( in lightTriangleDarkSmooth() 80 c->arrays.color.fetch(c, v0->color.v, cp); in lightTriangleDarkSmooth() 84 const GLvoid* cp = c->arrays.color.element( in lightTriangleDarkSmooth() 86 c->arrays.color.fetch(c, v1->color.v, cp); in lightTriangleDarkSmooth() 90 const GLvoid* cp = c->arrays.color.element( in lightTriangleDarkSmooth() 92 c->arrays.color.fetch(c, v2->color.v, cp); in lightTriangleDarkSmooth() 101 const GLvoid* cp = c->arrays.color.element( in lightTriangleDarkFlat() 103 c->arrays.color.fetch(c, v2->color.v, cp); in lightTriangleDarkFlat() 137 const GLvoid* cp = c->arrays.color.element( in lightVertexDarkSmoothFog() 139 c->arrays.color.fetch(c, v->color.v, cp); in lightVertexDarkSmoothFog() [all …]
|
D | vertex.cpp | 99 c->arrays.cull &= clip; in clipFrustumPerspective() 113 c->arrays.mv_transform( in clipAllPerspective() 144 c->arrays.cull = 0; in ogles_vertex_perspective2D()
|
D | matrix.cpp | 99 c->arrays.perspective = (c->clipPlanes.enable) ? in validate_perspective() 102 c->arrays.perspective = ogles_vertex_perspective3DZ; in validate_perspective() 104 c->arrays.perspective = ogles_vertex_clipAllPerspective3DZ; in validate_perspective() 106 if ((c->arrays.vertex.size != 4) && in validate_perspective() 108 c->arrays.perspective = ogles_vertex_perspective2D; in validate_perspective() 110 c->arrays.perspective(c, v); in validate_perspective() 115 c->arrays.perspective = validate_perspective; in ogles_invalidate_perspective()
|
D | light.cpp | 310 const GLvoid* cp = c->arrays.color.element( in lightVertexMaterial() 312 c->arrays.color.fetch(c, v->color.v, cp); in lightVertexMaterial() 356 c->arrays.normal.fetch(c, n.v, in lightVertex() 357 c->arrays.normal.element(v->index & vertex_cache_t::INDEX_MASK)); in lightVertex()
|
D | context.h | 611 array_machine_t arrays __attribute__((aligned(32))); member
|
/frameworks/compile/slang/tests/F_refcount_15/ |
D | stderr.txt.expect | 1 refcount_15.rs:5:15: error: arrays/structures containing RS object types cannot be exported in targ… 2 refcount_15.rs:9:3: error: arrays/structures containing RS object types cannot be exported in targe…
|
/frameworks/base/rs/java/android/renderscript/ |
D | Type.java | 467 int[] arrays = null; in create() local 469 if (mArray[ct] != 0 && arrays == null) { in create() 470 arrays = new int[ct]; in create() 472 if ((mArray[ct] == 0) && (arrays != null)) { in create() 487 t.mArrays = arrays; in create()
|
/frameworks/rs/ |
D | rsType.cpp | 61 delete [] mHal.state.arrays; in clear() 280 nt->mHal.state.arrays = new uint32_t[nt->mHal.state.arrayCount]; in getTypeRef() 281 if (params->array0 > 0) nt->mHal.state.arrays[0] = params->array0; in getTypeRef() 282 if (params->array1 > 1) nt->mHal.state.arrays[1] = params->array1; in getTypeRef() 283 if (params->array2 > 2) nt->mHal.state.arrays[2] = params->array2; in getTypeRef() 284 if (params->array3 > 3) nt->mHal.state.arrays[3] = params->array3; in getTypeRef()
|
D | rsType.h | 54 uint32_t *arrays; member 81 return mHal.state.arrays[idx]; in getArray()
|
/frameworks/compile/slang/tests/F_multidim_array/ |
D | stderr.txt.expect | 1 multidim_array.rs:4:5: error: multidimensional arrays cannot be exported: 'arr'
|
/frameworks/compile/slang/tests/F_ptr_to_array/ |
D | stderr.txt.expect | 1 ptr_to_array.rs:4:7: error: pointers to arrays cannot be exported: 'arrayptr'
|
/frameworks/compile/slang/tests/F_float3_array/ |
D | stderr.txt.expect | 1 float3_array.rs:4:8: error: arrays of width 3 vector types cannot be exported: 'f'
|
/frameworks/compile/slang/tests/F_struct_float3_array/ |
D | stderr.txt.expect | 1 struct_float3_array.rs:4:8: error: arrays of width 3 vector types cannot be exported: 'float3_array'
|
/frameworks/native/opengl/tests/angeles/ |
D | README.txt | 38 Common Lite, such as vertex arrays, color arrays and
|
/frameworks/compile/slang/tests/F_reduce_general_bad_result/ |
D | stderr.txt.expect | 1 reduce_general_bad_result.rs:22:36: error: multidimensional arrays cannot be exported: 'accum' 2 reduce_general_bad_result.rs:32:39: error: multidimensional arrays cannot be exported: 'out'
|
/frameworks/rs/driver/runtime/ |
D | rs_structs.h | 260 uint32_t *arrays; member
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLES30.java | 797 int[] arrays, in glDeleteVertexArrays() argument 805 java.nio.IntBuffer arrays in glDeleteVertexArrays() argument 812 int[] arrays, in glGenVertexArrays() argument 820 java.nio.IntBuffer arrays in glGenVertexArrays() argument
|
/frameworks/base/media/java/android/media/audiofx/ |
D | AudioEffect.java | 1347 public static byte[] concatArrays(byte[]... arrays) { in concatArrays() argument 1349 for (byte[] a : arrays) { in concatArrays() 1355 for (byte[] a : arrays) { in concatArrays()
|
/frameworks/native/opengl/tools/glgen/specs/gles11/ |
D | GLES30.spec | 35 void glDeleteVertexArrays ( GLsizei n, const GLuint *arrays ) 36 void glGenVertexArrays ( GLsizei n, GLuint *arrays )
|
/frameworks/native/opengl/libs/GLES_CM/ |
D | glext_api.in | 277 void API_ENTRY(glDeleteVertexArraysOES)(GLsizei n, const GLuint *arrays) { 278 CALL_GL_API(glDeleteVertexArraysOES, n, arrays); 280 void API_ENTRY(glGenVertexArraysOES)(GLsizei n, GLuint *arrays) { 281 CALL_GL_API(glGenVertexArraysOES, n, arrays);
|
/frameworks/base/core/jni/ |
D | android_opengl_GLES30.cpp | 1833 GLuint *arrays = (GLuint *) 0; in android_glDeleteVertexArrays__I_3II() local 1850 arrays = arrays_base + offset; in android_glDeleteVertexArrays__I_3II() 1854 (GLuint *)arrays in android_glDeleteVertexArrays__I_3II() 1877 GLuint *arrays = (GLuint *) 0; in android_glDeleteVertexArrays__ILjava_nio_IntBuffer_2() local 1885 arrays = (GLuint *)getPointer(_env, arrays_buf, (jarray*)&_array, &_remaining, &_bufferOffset); in android_glDeleteVertexArrays__ILjava_nio_IntBuffer_2() 1886 if (arrays == NULL) { in android_glDeleteVertexArrays__ILjava_nio_IntBuffer_2() 1888 arrays = (GLuint *) (_arraysBase + _bufferOffset); in android_glDeleteVertexArrays__ILjava_nio_IntBuffer_2() 1892 (GLuint *)arrays in android_glDeleteVertexArrays__ILjava_nio_IntBuffer_2() 1897 _env->ReleaseIntArrayElements(_array, (jint*)arrays, JNI_ABORT); in android_glDeleteVertexArrays__ILjava_nio_IntBuffer_2() 1913 GLuint *arrays = (GLuint *) 0; in android_glGenVertexArrays__I_3II() local [all …]
|
/frameworks/native/opengl/include/GLES/ |
D | glext.h | 921 GL_API void GL_APIENTRY glDeleteVertexArraysOES (GLsizei n, const GLuint *arrays); 922 GL_API void GL_APIENTRY glGenVertexArraysOES (GLsizei n, GLuint *arrays); 926 typedef void (GL_APIENTRYP PFNGLDELETEVERTEXARRAYSOESPROC) (GLsizei n, const GLuint *arrays); 927 typedef void (GL_APIENTRYP PFNGLGENVERTEXARRAYSOESPROC) (GLsizei n, GLuint *arrays);
|
/frameworks/base/libs/hwui/debug/ |
D | gles_stubs.in | 514 void API_ENTRY(glDeleteVertexArrays)(GLsizei n, const GLuint *arrays) { 515 CALL_GL_API(glDeleteVertexArrays, n, arrays); 517 void API_ENTRY(glGenVertexArrays)(GLsizei n, GLuint *arrays) { 518 CALL_GL_API(glGenVertexArrays, n, arrays); 1255 void API_ENTRY(glDeleteVertexArraysOES)(GLsizei n, const GLuint *arrays) { 1256 CALL_GL_API(glDeleteVertexArraysOES, n, arrays); 1258 void API_ENTRY(glGenVertexArraysOES)(GLsizei n, GLuint *arrays) { 1259 CALL_GL_API(glGenVertexArraysOES, n, arrays);
|
/frameworks/native/opengl/include/GLES3/ |
D | gl3.h | 1026 typedef void (GL_APIENTRYP PFNGLDELETEVERTEXARRAYSPROC) (GLsizei n, const GLuint *arrays); 1027 typedef void (GL_APIENTRYP PFNGLGENVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays); 1131 GL_APICALL void GL_APIENTRY glDeleteVertexArrays (GLsizei n, const GLuint *arrays); 1132 GL_APICALL void GL_APIENTRY glGenVertexArrays (GLsizei n, GLuint *arrays);
|