diff options
author | Keith Whitwell <[email protected]> | 2007-12-20 13:47:46 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2007-12-20 13:47:46 +0000 |
commit | a85535b7cb0886f23e5686e37d1fa54394cdece4 (patch) | |
tree | 9940a0b79f6c2132a28046bd5015af2329a827e0 /src/mesa/state_tracker/st_cb_drawpixels.c | |
parent | 9e41d547db6669ff669f1d60cb35df9edf306370 (diff) |
gallium: make state tracker explictly ask for rendercache flushes
Diffstat (limited to 'src/mesa/state_tracker/st_cb_drawpixels.c')
-rw-r--r-- | src/mesa/state_tracker/st_cb_drawpixels.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_cb_drawpixels.c b/src/mesa/state_tracker/st_cb_drawpixels.c index e70a5b49e12..2db12c653b6 100644 --- a/src/mesa/state_tracker/st_cb_drawpixels.c +++ b/src/mesa/state_tracker/st_cb_drawpixels.c @@ -849,7 +849,7 @@ draw_stencil_pixels(GLcontext *ctx, GLint x, GLint y, GLint skipPixels; ubyte *stmap; - pipe->flush(pipe, 0); + pipe->flush(pipe, PIPE_FLUSH_RENDER_CACHE); /* map the stencil buffer */ stmap = pipe_surface_map(ps); @@ -1208,7 +1208,7 @@ st_CopyPixels(GLcontext *ctx, GLint srcx, GLint srcy, uint format; /* make sure rendering has completed */ - pipe->flush(pipe, 0x0); + pipe->flush(pipe, PIPE_FLUSH_RENDER_CACHE); st_validate_state(st); |