HomeSort by relevance Sort by last modified time
    Searched refs:glDrawElementsInstanced (Results 1 - 25 of 66) sorted by null

1 2 3

  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glDrawElementsInstanced.java 1 // C function void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
3 public static native void glDrawElementsInstanced(
11 // C function void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
13 public static native void glDrawElementsInstanced(
glDrawElementsInstanced.cpp 1 /* void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount ) */
15 glDrawElementsInstanced(
27 /* void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount ) */
31 glDrawElementsInstanced(
  /external/deqp/modules/gles3/functional/
es3fNegativeVertexArrayApiTests.cpp 609 ES3F_ADD_API_CASE(draw_elements_instanced, "Invalid glDrawElementsInstanced() usage",
621 glDrawElementsInstanced(-1, 1, GL_UNSIGNED_BYTE, vertices, 1);
626 glDrawElementsInstanced(GL_POINTS, 1, -1, vertices, 1);
628 glDrawElementsInstanced(GL_POINTS, 1, GL_FLOAT, vertices, 1);
633 glDrawElementsInstanced(GL_POINTS, -1, GL_UNSIGNED_BYTE, vertices, 1);
635 glDrawElementsInstanced(GL_POINTS, 11, GL_UNSIGNED_BYTE, vertices, -1);
643 glDrawElementsInstanced(GL_POINTS, 1, GL_UNSIGNED_BYTE, vertices, 1);
667 glDrawElementsInstanced (GL_POINTS, 1, GL_UNSIGNED_BYTE, vertices, 1);
671 glDrawElementsInstanced (GL_POINTS, 1, GL_UNSIGNED_BYTE, vertices, 1);
683 ES3F_ADD_API_CASE(draw_elements_instanced_invalid_program, "Invalid glDrawElementsInstanced() usage"
    [all...]
es3fVertexArrayObjectTests.cpp 579 GLU_CHECK_CALL(glDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, m_indices, m_spec.instances));
586 GLU_CHECK_CALL(glDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, (GLvoid*)((GLintptr)m_spec.indexOffset), m_spec.instances));
    [all...]
es3fInstancedRenderingTests.cpp 549 glDrawElementsInstanced(GL_TRIANGLES, (int)m_gridIndices.size(), GL_UNSIGNED_SHORT, &m_gridIndices[0], m_numInstances);
633 : function == (int)InstancedRenderingCase::FUNCTION_DRAW_ELEMENTS_INSTANCED ? "Use glDrawElementsInstanced()"
es3fPrimitiveRestartTests.cpp 547 glDrawElementsInstanced(primTypeGL, (GLsizei)count, indexTypeGL, (GLvoid*)getIndexPtr(startNdx), 1);
  /external/deqp/modules/gles31/functional/
es31fNegativeVertexArrayApiTests.cpp 633 ctx.glDrawElementsInstanced(-1, 1, GL_UNSIGNED_BYTE, vertices, 1);
638 ctx.glDrawElementsInstanced(GL_POINTS, 1, -1, vertices, 1);
640 ctx.glDrawElementsInstanced(GL_POINTS, 1, GL_FLOAT, vertices, 1);
645 ctx.glDrawElementsInstanced(GL_POINTS, -1, GL_UNSIGNED_BYTE, vertices, 1);
647 ctx.glDrawElementsInstanced(GL_POINTS, 11, GL_UNSIGNED_BYTE, vertices, -1);
655 ctx.glDrawElementsInstanced(GL_POINTS, 1, GL_UNSIGNED_BYTE, vertices, 1);
679 ctx.glDrawElementsInstanced (GL_POINTS, 1, GL_UNSIGNED_BYTE, vertices, 1);
683 ctx.glDrawElementsInstanced (GL_POINTS, 1, GL_UNSIGNED_BYTE, vertices, 1);
705 ctx.glDrawElementsInstanced(-1, 1, GL_UNSIGNED_BYTE, vertices, 1);
710 ctx.glDrawElementsInstanced(GL_POINTS, 1, -1, vertices, 1)
    [all...]
  /external/deqp/framework/egl/
egluStaticES30Library.inl 73 { "glDrawElementsInstanced", (deFunctionPtr)glDrawElementsInstanced },
  /development/ndk/platforms/android-18/samples/gles3jni/jni/
gl3stub.c 91 FIND_PROC(glDrawElementsInstanced);
197 !glDrawElementsInstanced ||
309 GL_APICALL void (* GL_APIENTRY glDrawElementsInstanced) (GLenum mode, GLsizei count, GLenum type, const GLvoid* indices, GLsizei instanceCount);
gl3stub.h 451 extern GL_APICALL void (* GL_APIENTRY glDrawElementsInstanced) (GLenum mode, GLsizei count, GLenum type, const GLvoid* indices, GLsizei instanceCount);
    [all...]
  /development/ndk/sources/android/ndk_helper/
gl3stub.c 92 FIND_PROC( glDrawElementsInstanced );
152 || !glDrawArraysInstanced || !glDrawElementsInstanced || !glFenceSync
420 GL_APICALL void (* GL_APIENTRY glDrawElementsInstanced)( GLenum mode,
gl3stub.h 461 extern GL_APICALL void (* GL_APIENTRY glDrawElementsInstanced) (GLenum mode, GLsizei count, GLenum type, const GLvoid* indices, GLsizei instanceCount);
    [all...]
  /development/ndk/platforms/android-18/samples/MoreTeapots/jni/
MoreTeapotsRenderer.cpp 337 glDrawElementsInstanced( GL_TRIANGLES, num_indices_, GL_UNSIGNED_SHORT, BUFFER_OFFSET(0),
  /external/deqp/framework/opengl/wrapper/
glwInitES30Direct.inl 215 gl->drawElementsInstanced = &glDrawElementsInstanced;
  /frameworks/base/opengl/java/android/opengl/
GLES30.java     [all...]
  /frameworks/native/opengl/libs/GLES_trace/
gltrace.proto 471 glDrawElementsInstanced = 445;
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES30.spec 76 void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
  /external/deqp/framework/platform/null/
tcuNullRenderContextInitFuncs.inl 296 gl->drawElementsInstanced = glDrawElementsInstanced;
  /external/deqp/framework/opengl/simplereference/
sglrContextWrapper.hpp 263 void glDrawElementsInstanced (deUint32 mode, int count, deUint32 type, const void* indices, int primcount);
sglrGLContext.cpp 802 m_wrapper->glDrawElementsInstanced(mode, count, type, indices, instanceCount);
  /development/ndk/platforms/android-18/include/GLES3/
gl3.h     [all...]
  /external/chromium_org/third_party/angle/include/GLES3/
gl3.h     [all...]
  /frameworks/native/opengl/include/GLES3/
gl3.h     [all...]
  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/GLES3/
gl3.h     [all...]
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/GLES3/
gl3.h     [all...]

Completed in 775 milliseconds

1 2 3