From: Vinson Lee Date: Sun, 27 Oct 2013 06:09:30 +0000 (-0700) Subject: mesa: Add GL_NV_vdpau_interop functions to dispatch_sanity.cpp. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7f7636830514ae37b9df9969c44637f55323d608;p=mesa.git 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 --- 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 } };