Module: Mesa Branch: master Commit: 7f7636830514ae37b9df9969c44637f55323d608 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7f7636830514ae37b9df9969c44637f55323d608
Author: Vinson Lee <[email protected]> Date: Sat Oct 26 23:09:30 2013 -0700 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]> --- src/mesa/main/tests/dispatch_sanity.cpp | 12 ++++++++++++ 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 244173a..d26819c 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 } }; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
