diff options
author | Ian Romanick <[email protected]> | 2013-12-19 11:04:29 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2014-01-27 14:21:43 -0700 |
commit | 33214679bb632a80d4339ffa0f28f7620d510658 (patch) | |
tree | 4ac763c47b62b63e143b5bf11fdeeb1d33a661c2 /src/mesa/drivers/dri/r200 | |
parent | af0b34783e4e4f2a5d03444738a785f15bbb755b (diff) |
radeon / r200: Pass the API into _mesa_initialize_context
Otherwise an application that requested an OpenGL ES 1.x context would
actually get a desktop OpenGL context.
Signed-off-by: Ian Romanick <[email protected]>
Cc: "9.1 9.2 10.0" <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/r200')
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_context.c b/src/mesa/drivers/dri/r200/r200_context.c index a7021f2b6e3..637a26332c5 100644 --- a/src/mesa/drivers/dri/r200/r200_context.c +++ b/src/mesa/drivers/dri/r200/r200_context.c @@ -271,7 +271,7 @@ GLboolean r200CreateContext( gl_api api, r200InitShaderFuncs(&functions); radeonInitQueryObjFunctions(&functions); - if (!radeonInitContext(&rmesa->radeon, &functions, + if (!radeonInitContext(&rmesa->radeon, api, &functions, glVisual, driContextPriv, sharedContextPrivate)) { free(rmesa); |