summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/tests
diff options
context:
space:
mode:
authorIlia Mirkin <imirkin@alum.mit.edu>2016-04-03 02:28:53 -0400
committerIlia Mirkin <imirkin@alum.mit.edu>2016-04-03 20:40:55 -0400
commit807e2c27ac03718df8f53c2f28686dfed4c12677 (patch)
tree318c84b8270c7b42f6bf52842467708e7b0d3d43 /src/mesa/main/tests
parent40628886ca892f4b43f37335d3efbad55fb3c8bd (diff)
downloadexternal_mesa3d-807e2c27ac03718df8f53c2f28686dfed4c12677.zip
external_mesa3d-807e2c27ac03718df8f53c2f28686dfed4c12677.tar.gz
external_mesa3d-807e2c27ac03718df8f53c2f28686dfed4c12677.tar.bz2
mesa: expose EXT_polygon_offset_clamp in ES contexts
The extension spec was extended to also support ES. This functionality is provided all the way back to ES 1.0. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Reviewed-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/mesa/main/tests')
-rw-r--r--src/mesa/main/tests/dispatch_sanity.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp
index 9f278be..c6599fd 100644
--- a/src/mesa/main/tests/dispatch_sanity.cpp
+++ b/src/mesa/main/tests/dispatch_sanity.cpp
@@ -2064,6 +2064,9 @@ const struct function gles11_functions_possible[] = {
{ "glObjectLabelKHR", 11, -1 },
{ "glObjectPtrLabelKHR", 11, -1 },
+ /* GL_EXT_polygon_offset_clamp */
+ { "glPolygonOffsetClampEXT", 11, -1 },
+
{ NULL, 0, -1 }
};
@@ -2300,6 +2303,9 @@ const struct function gles2_functions_possible[] = {
{ "glObjectLabelKHR", 20, -1 },
{ "glObjectPtrLabelKHR", 20, -1 },
+ /* GL_EXT_polygon_offset_clamp */
+ { "glPolygonOffsetClampEXT", 11, -1 },
+
{ NULL, 0, -1 }
};