diff options
author | Ian Romanick <[email protected]> | 2012-10-08 17:50:38 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-10-09 11:21:14 -0700 |
commit | b25fbceb86ed26b249a884a0041a1ebcd4e320c3 (patch) | |
tree | c346eb5ff0e996fee6aa3daff9ab4ace76ae30b3 | |
parent | 7cb8764ca39cb7f325d6da10a8b11bf24adf2ae0 (diff) |
mesa/tests: Remove driverCtx parameter from call to _mesa_initialize_context
Fixes 'make check' breakage since 733dba2.
Signed-off-by: Ian Romanick <[email protected]>
-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 b5d712894f9..a8839a5a414 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -130,8 +130,7 @@ TEST_F(DispatchSanity_test, GLES2) API_OPENGLES2, //api, &visual, NULL, //&share_list, - &driver_functions, - (void *) NULL); + &driver_functions); _swrast_CreateContext(&ctx); _vbo_CreateContext(&ctx); |