Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/mapi/glapi/gen/ARB_get_texture_sub_image.xml
4561 views
1
<?xml version="1.0"?>
2
<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
3
4
<!-- This is included by gl_and_es_API.xml. Could be moved to gl_API.xml. -->
5
6
<OpenGLAPI>
7
8
<category name="GL_ARB_get_texture_sub_image" number="165">
9
10
<function name="GetTextureSubImage"
11
marshal="async" marshal_sync="_mesa_glthread_has_no_pack_buffer(ctx)">
12
<param name="texture" type="GLuint"/>
13
<param name="level" type="GLint"/>
14
<param name="xoffset" type="GLint"/>
15
<param name="yoffset" type="GLint"/>
16
<param name="zoffset" type="GLint"/>
17
<param name="width" type="GLsizei"/>
18
<param name="height" type="GLsizei"/>
19
<param name="depth" type="GLsizei"/>
20
<param name="format" type="GLenum"/>
21
<param name="type" type="GLenum"/>
22
<param name="bufSize" type="GLsizei"/>
23
<param name="pixels" type="GLvoid *"/>
24
</function>
25
26
<function name="GetCompressedTextureSubImage"
27
marshal="async" marshal_sync="_mesa_glthread_has_no_pack_buffer(ctx)">
28
<param name="texture" type="GLuint"/>
29
<param name="level" type="GLint"/>
30
<param name="xoffset" type="GLint"/>
31
<param name="yoffset" type="GLint"/>
32
<param name="zoffset" type="GLint"/>
33
<param name="width" type="GLsizei"/>
34
<param name="height" type="GLsizei"/>
35
<param name="depth" type="GLsizei"/>
36
<param name="bufSize" type="GLsizei"/>
37
<param name="pixels" type="GLvoid *"/>
38
</function>
39
40
</category>
41
42
</OpenGLAPI>
43
44