/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
H A D | ContextGL.cpp | 539 ANGLE_GL_TRY(context, getFunctions()->drawElementsInstancedBaseVertex( in drawElementsBaseVertex() 571 angle::Result ContextGL::drawElementsInstancedBaseVertex(const gl::Context *context, in drawElementsInstancedBaseVertex() function in rx::ContextGL 589 ANGLE_GL_TRY(context, getFunctions()->drawElementsInstancedBaseVertex( in drawElementsInstancedBaseVertex() 633 ANGLE_GL_TRY(context, functions->drawElementsInstancedBaseVertex( in drawElementsInstancedBaseVertexBaseInstance() 700 ANGLE_GL_TRY(context, getFunctions()->drawElementsInstancedBaseVertex( in drawRangeElementsBaseVertex()
|
H A D | DispatchTableGL_autogen.cpp | 236 ASSIGN("glDrawElementsInstancedBaseVertex", drawElementsInstancedBaseVertex); in initProcsDesktopGL() 1527 ASSIGN("glDrawElementsInstancedBaseVertex", drawElementsInstancedBaseVertex); in initProcsDesktopGL() 1995 ASSIGN("glDrawElementsInstancedBaseVertexEXT", drawElementsInstancedBaseVertex); in initProcsGLES() 2165 ASSIGN("glDrawElementsInstancedBaseVertexOES", drawElementsInstancedBaseVertex); in initProcsGLES() 2605 ASSIGN("glDrawElementsInstancedBaseVertex", drawElementsInstancedBaseVertex); in initProcsGLES() 3024 drawElementsInstancedBaseVertex = &glDrawElementsInstancedBaseVertexNULL; in initProcsDesktopGLNULL() 4314 drawElementsInstancedBaseVertex = &glDrawElementsInstancedBaseVertexNULL; in initProcsDesktopGLNULL() 4781 drawElementsInstancedBaseVertex = &glDrawElementsInstancedBaseVertexNULL; in initProcsGLESNULL() 4951 drawElementsInstancedBaseVertex = &glDrawElementsInstancedBaseVertexNULL; in initProcsGLESNULL() 5391 drawElementsInstancedBaseVertex in initProcsGLESNULL() [all...] |
H A D | ContextGL.h | 133 angle::Result drawElementsInstancedBaseVertex(const gl::Context *context,
|
H A D | DispatchTableGL_autogen.h | 360 PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC drawElementsInstancedBaseVertex = nullptr; member in rx::DispatchTableGL
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/draw_elements_base_vertex/ |
H A D | esextcDrawElementsBaseVertexTests.cpp | 689 gl.drawElementsInstancedBaseVertex(test_case.primitive_mode, 3, /* count */ in executeTestCases() 939 DE_ASSERT(gl.drawElementsInstancedBaseVertex != NULL); in init() 2570 gl.drawElementsInstancedBaseVertex(GL_TRIANGLES, 3, /* count */ 2705 gl.drawElementsInstancedBaseVertex(GL_TRIANGLES, /* mode */ 2805 gl.drawElementsInstancedBaseVertex(GL_TRIANGLES, /* mode */ 2920 gl.drawElementsInstancedBaseVertex(GL_GREATER, /* mode */ 3217 gl.drawElementsInstancedBaseVertex(GL_TRIANGLES, /* mode */
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Context_gles_3_2_autogen.h | 34 void drawElementsInstancedBaseVertex(PrimitiveMode modePacked, GLsizei count, \
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
H A D | ContextImpl.h | 79 virtual angle::Result drawElementsInstancedBaseVertex(const gl::Context *context,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
H A D | Context9.cpp | 221 angle::Result Context9::drawElementsInstancedBaseVertex(const gl::Context *context, in drawElementsInstancedBaseVertex() function in rx::Context9
|
H A D | Context9.h | 111 angle::Result drawElementsInstancedBaseVertex(const gl::Context *context,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
H A D | Context11.h | 112 angle::Result drawElementsInstancedBaseVertex(const gl::Context *context,
|
H A D | Context11.cpp | 366 angle::Result Context11::drawElementsInstancedBaseVertex(const gl::Context *context, in drawElementsInstancedBaseVertex() function in rx::Context11
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/null/ |
H A D | ContextNULL.cpp | 187 angle::Result ContextNULL::drawElementsInstancedBaseVertex(const gl::Context *context, in drawElementsInstancedBaseVertex() function in rx::ContextNULL
|
H A D | ContextNULL.h | 81 angle::Result drawElementsInstancedBaseVertex(const gl::Context *context,
|
/third_party/vk-gl-cts/framework/opengl/simplereference/ |
H A D | sglrContext.hpp | 182 virtual void drawElementsInstancedBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int instanceCount, int baseVertex) = DE_NULL;
|
H A D | sglrGLContext.hpp | 194 virtual void drawElementsInstancedBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int instanceCount, int baseVertex);
|
H A D | sglrGLContext.cpp | 810 void GLContext::drawElementsInstancedBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int instanceCount, int baseVertex) in drawElementsInstancedBaseVertex() function in sglr::GLContext
|
H A D | sglrReferenceContext.hpp | 747 virtual void drawElementsInstancedBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int instanceCount, int baseVertex);
|
H A D | sglrReferenceContext.cpp | 4060 drawElementsInstancedBaseVertex(mode, count, type, indices, 1, baseVertex); 4065 drawElementsInstancedBaseVertex(mode, count, type, indices, instanceCount, 0); 4068 void ReferenceContext::drawElementsInstancedBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int instanceCount, int baseVertex) 4187 drawElementsInstancedBaseVertex(mode, (int)command->count, type, indicesPtr, (int)command->primCount, command->baseVertex);
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
H A D | ContextMtl.h | 83 angle::Result drawElementsInstancedBaseVertex(const gl::Context *context,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | ContextVk.h | 120 angle::Result drawElementsInstancedBaseVertex(const gl::Context *context,
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fDrawElementsBaseVertexTests.cpp | 315 GLU_CHECK_GLW_CALL(m_gl, drawElementsInstancedBaseVertex(mode, count, type, indices, 1, baseVertex)); in draw()
|
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
H A D | entry_points_gles_3_2_autogen.cpp | 410 context->drawElementsInstancedBaseVertex(modePacked, count, typePacked, indices, in GL_DrawElementsInstancedBaseVertex()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cSparseBufferTests.cpp | 5401 m_gl.drawElementsInstancedBaseVertex(GL_POINTS, m_n_vertices_per_instance, GL_UNSIGNED_INT,
|
/third_party/skia/third_party/externals/angle2/src/libGL/ |
H A D | entry_points_gl_3_autogen.cpp | 2824 context->drawElementsInstancedBaseVertex(modePacked, count, typePacked, indices, in GL_DrawElementsInstancedBaseVertex()
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsDrawTest.cpp | 2027 m_ctx.drawElementsInstancedBaseVertex(primitiveToGL(primitive), vertexCount, indexTypeToGL(indexType), indexOffset, instanceCount, baseVertex); in render() 2778 << "drawElementsInstancedBaseVertex()\n" in getMultilineDesc()
|