85 lines
3.4 KiB
Diff
85 lines
3.4 KiB
Diff
From a47e58027d672fe1a3e1b1d11113b799322e7344 Mon Sep 17 00:00:00 2001
|
|
From: Imagination Technologies <powervr@imgtec.com>
|
|
Date: Thu, 4 Feb 2016 14:09:26 +0000
|
|
Subject: [PATCH 007/168] GL_EXT_shader_pixel_local_storage2 entry points
|
|
|
|
---
|
|
.../gen/EXT_shader_pixel_local_storage2.xml | 35 +++++++++++++++++++
|
|
src/mapi/glapi/gen/es_EXT.xml | 3 ++
|
|
src/mapi/glapi/gen/static_data.py | 3 ++
|
|
3 files changed, 41 insertions(+)
|
|
create mode 100644 src/mapi/glapi/gen/EXT_shader_pixel_local_storage2.xml
|
|
|
|
diff --git a/src/mapi/glapi/gen/EXT_shader_pixel_local_storage2.xml b/src/mapi/glapi/gen/EXT_shader_pixel_local_storage2.xml
|
|
new file mode 100644
|
|
index 00000000000..20e186c0f0d
|
|
--- /dev/null
|
|
+++ b/src/mapi/glapi/gen/EXT_shader_pixel_local_storage2.xml
|
|
@@ -0,0 +1,35 @@
|
|
+<?xml version="1.0"?>
|
|
+<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
|
|
+
|
|
+<OpenGLAPI>
|
|
+
|
|
+<category name="EXT_shader_pixel_local_storage2" number="240">
|
|
+
|
|
+ <enum name="GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT" value="0x8F63"/>
|
|
+ <enum name="GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_SIZE_EXT" value="0x8F67"/>
|
|
+ <enum name="GL_SHADER_PIXEL_LOCAL_STORAGE_EXT" value="0x8F64"/>
|
|
+ <enum name="GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_FAST_SIZE_EXT" value="0x9650"/>
|
|
+ <enum name="GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_SIZE_EXT" value="0x9651"/>
|
|
+ <enum name="GL_FRAMEBUFFER_INCOMPLETE_INSUFFICIENT_SHADER_COMBINED_LOCAL_STORAGE_EXT" value="0x9652"/>
|
|
+
|
|
+ <function name="ClearPixelLocalStorageuiEXT" es2="3.1" exec="dynamic">
|
|
+ <param name="offset" type="GLsizei"/>
|
|
+ <param name="n" type="GLsizei"/>
|
|
+ <param name="values" type="const GLuint *"/>
|
|
+ </function>
|
|
+
|
|
+ <function name="FramebufferPixelLocalStorageSizeEXT" es2="3.1"
|
|
+ exec="dynamic">
|
|
+ <param name="target" type="GLuint"/>
|
|
+ <param name="size" type="GLsizei"/>
|
|
+ </function>
|
|
+
|
|
+ <function name="GetFramebufferPixelLocalStorageSizeEXT" es2="3.1"
|
|
+ exec="dynamic">
|
|
+ <param name="target" type="GLuint"/>
|
|
+ <return type="GLsizei"/>
|
|
+ </function>
|
|
+
|
|
+</category>
|
|
+
|
|
+</OpenGLAPI>
|
|
diff --git a/src/mapi/glapi/gen/es_EXT.xml b/src/mapi/glapi/gen/es_EXT.xml
|
|
index 03c78ef9ca5..0ed0e003bae 100644
|
|
--- a/src/mapi/glapi/gen/es_EXT.xml
|
|
+++ b/src/mapi/glapi/gen/es_EXT.xml
|
|
@@ -1485,6 +1485,9 @@
|
|
<!-- 240. EXT_sparse_texture -->
|
|
<xi:include href="EXT_sparse_texture.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
|
|
|
|
+<!-- 253. GL_EXT_shader_pixel_local_storage2 -->
|
|
+<xi:include href="EXT_shader_pixel_local_storage2.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
|
|
+
|
|
<category name="GL_OES_viewport_array" number="267">
|
|
<function name="ViewportArrayvOES" es2="3.1" alias="ViewportArrayv">
|
|
<param name="first" type="GLuint"/>
|
|
diff --git a/src/mapi/glapi/gen/static_data.py b/src/mapi/glapi/gen/static_data.py
|
|
index c815f13d116..45780fb35f0 100644
|
|
--- a/src/mapi/glapi/gen/static_data.py
|
|
+++ b/src/mapi/glapi/gen/static_data.py
|
|
@@ -1708,6 +1708,9 @@ offsets = {
|
|
"WeightPointerOES" : 1672,
|
|
"RenderbufferStorageMultisampleIMG" : 1673,
|
|
"FramebufferTexture2DMultisampleIMG" : 1674,
|
|
+ "ClearPixelLocalStorageuiEXT" : 1675,
|
|
+ "FramebufferPixelLocalStorageSizeEXT" : 1676,
|
|
+ "GetFramebufferPixelLocalStorageSizeEXT" : 1677,
|
|
}
|
|
|
|
functions = [
|
|
--
|
|
2.17.1
|
|
|