diff options
author | Matt Turner <[email protected]> | 2012-11-20 13:01:04 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2013-01-10 10:57:51 -0800 |
commit | 0ae81b8422e272e44ef40a09dc443c9014adbd0b (patch) | |
tree | 162706c2f2fa3724dec9c7a197220dcf46157345 /src/mesa/main/tests/dispatch_sanity.cpp | |
parent | 1a3ffbf3789777a174158ba75472b07a6270ba9d (diff) |
mesa: Rename and wire-up GetInteger64i_v
The function was named badly and wasn't in the dispatch table,
making it hard to find.
Fixes transform_feedback2_states and gets a few other transform
feedback tests closer to working in es3conform.
Reviewed-by Anuj Phogat <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/tests/dispatch_sanity.cpp')
-rw-r--r-- | src/mesa/main/tests/dispatch_sanity.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index a28555978e4..3450b86f6e0 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -1310,8 +1310,7 @@ const struct function gles3_functions_possible[] = { // We check for the aliased -OES version in GLES 2 // { "glGetBufferPointerv", 30, -1 }, { "glGetFragDataLocation", 30, -1 }, - /// XXX: Missing implementation of glGetInteger64i_v - // { "glGetInteger64i_v", 30, -1 }, + { "glGetInteger64i_v", 30, -1 }, { "glGetInteger64v", 30, -1 }, { "glGetIntegeri_v", 30, -1 }, // XXX: Missing implementation of ARB_internalformat_query |