57 lines
1.9 KiB
Diff
57 lines
1.9 KiB
Diff
From 40cf908ef114f8c590ee3419153f41b08b208350 Mon Sep 17 00:00:00 2001
|
|
From: Imagination Technologies <powervr@imgtec.com>
|
|
Date: Tue, 30 Jan 2018 10:25:11 +0000
|
|
Subject: [PATCH 021/168] GL_EXT_multi_draw_indirect entry points
|
|
|
|
---
|
|
src/mapi/glapi/gen/es_EXT.xml | 19 +++++++++++++++++++
|
|
src/mapi/glapi/gen/static_data.py | 2 ++
|
|
2 files changed, 21 insertions(+)
|
|
|
|
diff --git a/src/mapi/glapi/gen/es_EXT.xml b/src/mapi/glapi/gen/es_EXT.xml
|
|
index b59e85d3281..6ff5432e029 100644
|
|
--- a/src/mapi/glapi/gen/es_EXT.xml
|
|
+++ b/src/mapi/glapi/gen/es_EXT.xml
|
|
@@ -1140,6 +1140,25 @@
|
|
|
|
</category>
|
|
|
|
+<category name="GL_EXT_multi_draw_indirect" number="205">
|
|
+
|
|
+ <function name="MultiDrawArraysIndirectEXT" es2="3.1" exec="dynamic">
|
|
+ <param name="mode" type="GLenum"/>
|
|
+ <param name="indirect" type="const GLvoid *"/>
|
|
+ <param name="drawcount" type="GLsizei"/>
|
|
+ <param name="stride" type="GLsizei"/>
|
|
+ </function>
|
|
+
|
|
+ <function name="MultiDrawElementsIndirectEXT" es2="3.1" exec="dynamic">
|
|
+ <param name="mode" type="GLenum"/>
|
|
+ <param name="type" type="GLenum"/>
|
|
+ <param name="indirect" type="const GLvoid *"/>
|
|
+ <param name="drawcount" type="GLsizei"/>
|
|
+ <param name="stride" type="GLsizei"/>
|
|
+ </function>
|
|
+
|
|
+</category>
|
|
+
|
|
<category name="GL_EXT_copy_image" number="208">
|
|
|
|
<function name="CopyImageSubDataEXT" alias="CopyImageSubData" es2="3.0">
|
|
diff --git a/src/mapi/glapi/gen/static_data.py b/src/mapi/glapi/gen/static_data.py
|
|
index 2255385128c..dd4a802c496 100644
|
|
--- a/src/mapi/glapi/gen/static_data.py
|
|
+++ b/src/mapi/glapi/gen/static_data.py
|
|
@@ -1715,6 +1715,8 @@ offsets = {
|
|
"FramebufferTextureLayerDownsampleIMG" : 1679,
|
|
"FramebufferTextureMultiviewOVR" : 1680,
|
|
"FramebufferTextureMultisampleMultiviewOVR" : 1681,
|
|
+ "MultiDrawArraysIndirectEXT" : 1682,
|
|
+ "MultiDrawElementsIndirectEXT" : 1683,
|
|
}
|
|
|
|
functions = [
|
|
--
|
|
2.17.1
|
|
|