Searched refs:glBufferData (Results 1 - 25 of 39) sorted by relevance

12

/xsrc/external/mit/mesa-demos/dist/src/glsl/
H A Dblinking-teapot.c77 glBufferData (GL_UNIFORM_BUFFER, uniformBlockSize, NULL, GL_DYNAMIC_DRAW);
88 glBufferData (GL_UNIFORM_BUFFER, 80, colors, GL_DYNAMIC_DRAW);
H A Dgsraytrace.cpp765 glBufferData(GL_TRANSFORM_FEEDBACK_BUFFER, nElem*sizeof(GSRay), 0, GL_STREAM_DRAW);
778 glBufferData(GL_ARRAY_BUFFER, WinWidth*WinHeight*sizeof(GSRay), 0, GL_STATIC_DRAW);
H A Dgeom-stipple-lines.c181 glBufferData(GL_ARRAY_BUFFER, NumPoints * sizeof(struct vert),
H A Dgeom-wide-lines.c167 glBufferData(GL_ARRAY_BUFFER, NumPoints * sizeof(struct vert),
H A Dgeom-outlining-150.c347 glBufferData(GL_ARRAY_BUFFER, sizeof(verts), verts, GL_STATIC_DRAW);
/xsrc/external/mit/xorg-server/dist/glamor/
H A Dglamor_vbo.c111 glBufferData(GL_ARRAY_BUFFER,
126 * memory. We'll upload it through glBufferData() later.
135 * the vbo_offset determines the size of the glBufferData().
162 glBufferData(GL_ARRAY_BUFFER, glamor_priv->vbo_offset,
H A Dglamor_prepare.c94 glBufferData(GL_PIXEL_PACK_BUFFER,
H A Dglamor.c340 glBufferData(GL_ELEMENT_ARRAY_BUFFER, size, NULL, GL_STATIC_DRAW);
/xsrc/external/mit/MesaLib/dist/docs/gallium/
H A Dbuffermapping.rst7 ``glBufferSubData()``/``glBufferData()``/``glFlushMappedBufferRange()``/``glUnmapBuffer()``
48 2) Reallocate the buffer storage on ``glBufferData`` so that your first
52 You can't just empty your valid range on ``glBufferData()`` unless you know that
100 167585 glBufferData(target = GL_ARRAY_BUFFER, size = 196608, data = NULL, usage = GL_STREAM_DRAW)
103 167589 glBufferData(target = GL_ARRAY_BUFFER, size = 196608, data = NULL, usage = GL_STREAM_DRAW)
110 In this game, we can see ``glBufferData()`` being used on the same array buffer
121 7251919 glBufferData(target = GL_ARRAY_BUFFER, size = 144, data = blob(144), usage = GL_STREAM_DRAW)
128 7251940 glBufferData(target = GL_ARRAY_BUFFER, size = 144, data = blob(144), usage = GL_STREAM_DRAW)
137 In this game we have a lot of tiny ``glBufferData()`` calls, suggesting that we
254 938386 glBufferData(targe
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mapi/es1api/
H A DABI-check33 glBufferData
/xsrc/external/mit/MesaLib.old/dist/src/intel/tools/imgui/
H A Dimgui_impl_opengl3.cpp181 glBufferData(GL_ARRAY_BUFFER, (GLsizeiptr)cmd_list->VtxBuffer.Size * sizeof(ImDrawVert), (const GLvoid*)cmd_list->VtxBuffer.Data, GL_STREAM_DRAW);
184 glBufferData(GL_ELEMENT_ARRAY_BUFFER, (GLsizeiptr)cmd_list->IdxBuffer.Size * sizeof(ImDrawIdx), (const GLvoid*)cmd_list->IdxBuffer.Data, GL_STREAM_DRAW);
/xsrc/external/mit/MesaLib/dist/src/intel/tools/imgui/
H A Dimgui_impl_opengl3.cpp181 glBufferData(GL_ARRAY_BUFFER, (GLsizeiptr)cmd_list->VtxBuffer.Size * sizeof(ImDrawVert), (const GLvoid*)cmd_list->VtxBuffer.Data, GL_STREAM_DRAW);
184 glBufferData(GL_ELEMENT_ARRAY_BUFFER, (GLsizeiptr)cmd_list->IdxBuffer.Size * sizeof(ImDrawIdx), (const GLvoid*)cmd_list->IdxBuffer.Data, GL_STREAM_DRAW);
/xsrc/external/mit/mesa-demos/dist/src/perf/
H A Dglsl-compile-time.c276 glBufferData(GL_ARRAY_BUFFER, sizeof(coords), coords, GL_STATIC_DRAW);
/xsrc/external/mit/mesa-demos/dist/src/tests/
H A Dquads.c222 glBufferData(GL_ARRAY_BUFFER_ARB, bytes, NULL, GL_STATIC_DRAW_ARB);
/xsrc/external/mit/MesaLib.old/dist/src/mapi/es2api/
H A DABI-check54 glBufferData
/xsrc/external/mit/libepoxy/dist/
H A DREADME.md22 * Knows about function aliases so (e.g.) `glBufferData()` can be
/xsrc/external/mit/mesa-demos/dist/src/egl/opengles1/
H A Dgears.c176 glBufferData(GL_ARRAY_BUFFER, total_size, verts, GL_STATIC_DRAW);
/xsrc/external/mit/xorg-server/dist/hw/kdrive/ephyr/
H A Dephyr_glamor_glx.c369 glBufferData(GL_ARRAY_BUFFER, sizeof (position), position, GL_STATIC_DRAW);
/xsrc/external/mit/mesa-demos/dist/src/egl/opengles2/
H A Des2gears.c273 glBufferData(GL_ARRAY_BUFFER, gear->nvertices * sizeof(GearVertex),
/xsrc/external/mit/MesaLib.old/dist/include/GLES/
H A Dgl.h456 GL_API void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
/xsrc/external/mit/MesaLib/dist/include/GLES/
H A Dgl.h447 GL_API void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
/xsrc/external/mit/MesaLib/src/mapi/es1api/
H A Dglapi_mapi_tmp.h19 GLAPI void APIENTRY glBufferData(GLenum target, GLsizeiptr size, const void *data, GLenum usage);
204 GLAPI void APIENTRY glBufferData(GLenum target, GLsizeiptr size, const void *data, GLenum usage) function in typeref:typename:GLAPI void APIENTRY
1204 STUB_ASM_ENTRY("glBufferData")"\n"
/xsrc/external/mit/MesaLib.old/dist/include/GLES2/
H A Dgl2.h538 GL_APICALL void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
/xsrc/external/mit/MesaLib/dist/include/GLES2/
H A Dgl2.h538 GL_APICALL void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
/xsrc/external/mit/MesaLib/src/mapi/es2api/
H A Dglapi_mapi_tmp.h42 GLAPI void APIENTRY glBufferData(GLenum target, GLsizeiptr size, const void *data, GLenum usage);
578 GLAPI void APIENTRY glBufferData(GLenum target, GLsizeiptr size, const void *data, GLenum usage) function in typeref:typename:GLAPI void APIENTRY
2977 STUB_ASM_ENTRY("glBufferData")"\n"

Completed in 34 milliseconds

12