aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVinson Lee <[email protected]>2013-10-26 23:09:30 -0700
committerVinson Lee <[email protected]>2013-10-26 23:13:51 -0700
commit7f7636830514ae37b9df9969c44637f55323d608 (patch)
treeab5614d3b52d586711d42fbfe15bd6c412b10938 /src
parentbc23944091ad0d3742d8db5dc762acafb9b8b7fd (diff)
mesa: Add GL_NV_vdpau_interop functions to dispatch_sanity.cpp.
Fixes 'make check' failures introduced with commit 80964226e9b8a05c39157f9305c06c0b2861e080. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=70900 Signed-off-by: Vinson Lee <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/tests/dispatch_sanity.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp
index 244173af87c..d26819c6b84 100644
--- a/src/mesa/main/tests/dispatch_sanity.cpp
+++ b/src/mesa/main/tests/dispatch_sanity.cpp
@@ -921,6 +921,18 @@ const struct function gl_core_functions_possible[] = {
{ "glEndPerfMonitorAMD", 11, -1 },
{ "glGetPerfMonitorCounterDataAMD", 11, -1 },
+ /* GL_NV_vdpau_interop */
+ { "glVDPAUInitNV", 11, -1 },
+ { "glVDPAUFiniNV", 11, -1 },
+ { "glVDPAURegisterVideoSurfaceNV", 11, -1 },
+ { "glVDPAURegisterOutputSurfaceNV", 11, -1 },
+ { "glVDPAUIsSurfaceNV", 11, -1 },
+ { "glVDPAUUnregisterSurfaceNV", 11, -1 },
+ { "glVDPAUGetSurfaceivNV", 11, -1 },
+ { "glVDPAUSurfaceAccessNV", 11, -1 },
+ { "glVDPAUMapSurfacesNV", 11, -1 },
+ { "glVDPAUUnmapSurfacesNV", 11, -1 },
+
{ NULL, 0, -1 }
};