diff options
author | Kristian Høgsberg <[email protected]> | 2013-12-07 22:02:11 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2013-12-13 08:19:50 -0800 |
commit | 38366c0c6e715314367b15680702e382d5c46a4a (patch) | |
tree | 2196c7c662ea9940d356aa9824e7959ff572eccb /src/mesa/drivers/dri/r200 | |
parent | d6c8365795c4fb1af83b79f26f782e0834f6bdfc (diff) |
dri_util: Don't assume __DRIcontext->driverPrivate is a gl_context
The driverPrivate pointer is opaque to the driver and we can't assume
it's a struct gl_context in dri_util.c. Instead provide a helper function
to set the struct gl_context flags from the incoming DRI context flags.
v2 (idr): Modify the other classic drivers to also use
driContextSetFlags. I ran all the piglit GLX_ARB_create_context tests
with i965 and classic swrast without regressions.
Signed-off-by: Kristian Høgsberg <[email protected]>
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Ian Romanick <[email protected]> [v1]
Reviewed-by: Eric Anholt <[email protected]>
Tested-by: Ilia Mirkin <[email protected]> [v1 on Gallium nouveau]
Cc: "10.0" <[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, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_context.c b/src/mesa/drivers/dri/r200/r200_context.c index d4e9ca8caca..dadbd7778c6 100644 --- a/src/mesa/drivers/dri/r200/r200_context.c +++ b/src/mesa/drivers/dri/r200/r200_context.c @@ -279,6 +279,8 @@ GLboolean r200CreateContext( gl_api api, return GL_FALSE; } + driContextSetFlags(ctx, flags); + rmesa->radeon.swtcl.RenderIndex = ~0; rmesa->radeon.hw.all_dirty = 1; |