summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/tests
diff options
context:
space:
mode:
authorIlia Mirkin <imirkin@alum.mit.edu>2016-03-31 00:48:01 -0400
committerIlia Mirkin <imirkin@alum.mit.edu>2016-03-31 21:12:49 -0400
commite0e16830873b945a24880ae515466bf7f9165f42 (patch)
tree74e1e523354b44bb2e2b8485b74d11d40aa61bd3 /src/mesa/main/tests
parenta57320a9ba4f453c567716bf8270c0ac629ad0d2 (diff)
downloadexternal_mesa3d-e0e16830873b945a24880ae515466bf7f9165f42.zip
external_mesa3d-e0e16830873b945a24880ae515466bf7f9165f42.tar.gz
external_mesa3d-e0e16830873b945a24880ae515466bf7f9165f42.tar.bz2
mesa: add GL_OES/EXT_draw_buffers_indexed support
This is the same ext as ARB_draw_buffers_blend (plus some core functionality that already exists). Add the alias entrypoints. 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.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp
index c3aa710..9f278be 100644
--- a/src/mesa/main/tests/dispatch_sanity.cpp
+++ b/src/mesa/main/tests/dispatch_sanity.cpp
@@ -2460,6 +2460,16 @@ const struct function gles3_functions_possible[] = {
/* GL_OES_copy_image */
{ "glCopyImageSubDataOES", 30, -1 },
+ /* GL_OES_draw_buffers_indexed */
+ { "glBlendFunciOES", 30, -1 },
+ { "glBlendFuncSeparateiOES", 30, -1 },
+ { "glBlendEquationiOES", 30, -1 },
+ { "glBlendEquationSeparateiOES", 30, -1 },
+ { "glColorMaskiOES", 30, -1 },
+ { "glEnableiOES", 30, -1 },
+ { "glDisableiOES", 30, -1 },
+ { "glIsEnablediOES", 30, -1 },
+
{ NULL, 0, -1 }
};