summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/tests
diff options
context:
space:
mode:
authorErik Faye-Lund <[email protected]>2018-11-09 16:16:13 +0100
committerErik Faye-Lund <[email protected]>2018-11-09 16:47:34 +0100
commitcccd7a253f9ed14ea748a222f58b0e5c895eb939 (patch)
tree6fc9b93737fb7d03adbcfb526045a949d3756fb5 /src/mesa/main/tests
parent8c97abc066ef3bcf9c5a99b4be39daa5243a8234 (diff)
mesa/main: fixup make check after NV_conditional_render for gles
It seems I missed some details when exposing NV_conditional_render on GLES; this fixes up "make check". Fixes: 5213be9fab7 ("mesa: expose NV_conditional_render on GLES") Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-and-Tested-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/mesa/main/tests')
-rw-r--r--src/mesa/main/tests/dispatch_sanity.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp
index fb2acfbdeea..c5d75f9683e 100644
--- a/src/mesa/main/tests/dispatch_sanity.cpp
+++ b/src/mesa/main/tests/dispatch_sanity.cpp
@@ -2236,6 +2236,10 @@ const struct function gles2_functions_possible[] = {
/* GL_NV_conservative_raster_pre_snap_triangles */
{ "glConservativeRasterParameteriNV", 20, -1 },
+ /* GL_NV_conditional_render */
+ { "glBeginConditionalRenderNV", 20, -1 },
+ { "glEndConditionalRenderNV", 20, -1 },
+
{ NULL, 0, -1 }
};