mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-10 07:30:29 +01:00
Note that we are missing the ARB_internalformat_query extension, which provides the glGetInternalformativ function needed by GL ES 3.0. Reviewed-by: Paul Berry <stereotype441@gmail.com>
34 lines
1.1 KiB
XML
34 lines
1.1 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
|
|
|
|
<!-- Note: no GLX protocol info yet. -->
|
|
|
|
|
|
<OpenGLAPI>
|
|
|
|
<category name="GL_ARB_map_buffer_range" number="50">
|
|
|
|
<enum name="MAP_READ_BIT" value="0x0001"/>
|
|
<enum name="MAP_WRITE_BIT" value="0x0002"/>
|
|
<enum name="MAP_INVALIDATE_RANGE_BIT" value="0x0004"/>
|
|
<enum name="MAP_INVALIDATE_BUFFER_BIT" value="0x0008"/>
|
|
<enum name="MAP_FLUSH_EXPLICIT_BIT" value="0x0010"/>
|
|
<enum name="MAP_UNSYNCHRONIZED_BIT" value="0x0020"/>
|
|
|
|
<function name="MapBufferRange" offset="assign" es2="3.0">
|
|
<param name="target" type="GLenum"/>
|
|
<param name="offset" type="GLintptr"/>
|
|
<param name="length" type="GLsizeiptr"/>
|
|
<param name="access" type="GLbitfield"/>
|
|
<return type="GLvoid *"/>
|
|
</function>
|
|
|
|
<function name="FlushMappedBufferRange" offset="assign" es2="3.0">
|
|
<param name="target" type="GLenum"/>
|
|
<param name="offset" type="GLintptr"/>
|
|
<param name="length" type="GLsizeiptr"/>
|
|
</function>
|
|
|
|
</category>
|
|
|
|
</OpenGLAPI>
|