Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/mapi/glapi/gen/ARB_multi_bind.xml
4561 views
1
<?xml version="1.0"?>
2
<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
3
4
<!-- Note: no GLX protocol info yet. -->
5
6
<OpenGLAPI>
7
8
<category name="GL_ARB_multi_bind" number="147">
9
10
<function name="BindBuffersBase">
11
<param name="target" type="GLenum"/>
12
<param name="first" type="GLuint"/>
13
<param name="count" type="GLsizei"/>
14
<param name="buffers" type="const GLuint *" count="count"/>
15
</function>
16
17
<function name="BindBuffersRange">
18
<param name="target" type="GLenum"/>
19
<param name="first" type="GLuint"/>
20
<param name="count" type="GLsizei"/>
21
<param name="buffers" type="const GLuint *" count="count"/>
22
<param name="offsets" type="const GLintptr *" count="count"/>
23
<param name="sizes" type="const GLsizeiptr *" count="count"/>
24
</function>
25
26
<function name="BindTextures" no_error="true">
27
<param name="first" type="GLuint"/>
28
<param name="count" type="GLsizei"/>
29
<param name="textures" type="const GLuint *" count="count"/>
30
</function>
31
32
<function name="BindSamplers" no_error="true">
33
<param name="first" type="GLuint"/>
34
<param name="count" type="GLsizei"/>
35
<param name="samplers" type="const GLuint *" count="count"/>
36
</function>
37
38
<function name="BindImageTextures" no_error="true">
39
<param name="first" type="GLuint"/>
40
<param name="count" type="GLsizei"/>
41
<param name="textures" type="const GLuint *" count="count"/>
42
</function>
43
44
<function name="BindVertexBuffers" no_error="true">
45
<param name="first" type="GLuint"/>
46
<param name="count" type="GLsizei"/>
47
<param name="buffers" type="const GLuint *" count="count"/>
48
<param name="offsets" type="const GLintptr *" count="count"/>
49
<param name="strides" type="const GLsizei *" count="count"/>
50
</function>
51
52
</category>
53
</OpenGLAPI>
54
55