summaryrefslogtreecommitdiffstats
path: root/src/gallium/state_trackers/dri/dri_context.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2010-03-16 06:49:38 +1000
committerDave Airlie <airlied@redhat.com>2010-03-16 06:51:04 +1000
commit8e848d682e74f9ae3e105635fe55d19ed8c94547 (patch)
tree9265b262bd24b84c6b46323ceff4c85928ca8feb /src/gallium/state_trackers/dri/dri_context.c
parentd0b35352ed27b1e66785c45ee95a352ed06b47ce (diff)
downloadexternal_mesa3d-8e848d682e74f9ae3e105635fe55d19ed8c94547.zip
external_mesa3d-8e848d682e74f9ae3e105635fe55d19ed8c94547.tar.gz
external_mesa3d-8e848d682e74f9ae3e105635fe55d19ed8c94547.tar.bz2
gallium: fix frontbuffer rendering with r300g
No idea if this is the correct fix, but it makes it work again at least. Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/gallium/state_trackers/dri/dri_context.c')
-rw-r--r--src/gallium/state_trackers/dri/dri_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/dri/dri_context.c b/src/gallium/state_trackers/dri/dri_context.c
index 2f991c3..9811f8c 100644
--- a/src/gallium/state_trackers/dri/dri_context.c
+++ b/src/gallium/state_trackers/dri/dri_context.c
@@ -167,7 +167,7 @@ dri_make_current(__DRIcontext * cPriv,
* flush_frontbuffer directly (in front-buffer rendering), it
* will have access to the drawable argument:
*/
- st_make_current(ctx->st, draw->stfb, read->stfb, NULL);
+ st_make_current(ctx->st, draw->stfb, read->stfb, ctx);
if (__dri1_api_hooks) {
dri1_update_drawables(ctx, draw, read);