diff options
author | Christoph Bumiller <[email protected]> | 2011-02-09 15:01:23 +0100 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2011-02-09 16:05:00 +0100 |
commit | b6e3130a3b6e40308ddb5d11638d509fe69eb912 (patch) | |
tree | 2080f9d37e7d180ba309856e139207557fd123d2 | |
parent | fc798dc37dd8a39c253a436fa0c9dd2071f09270 (diff) |
nvc0: serialize on PIPE_FLUSH_RENDER_CACHE as well
Effects were easily visible in piglit/fbo-generatemipmap-formats.
-rw-r--r-- | src/gallium/drivers/nvc0/nvc0_context.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/nvc0/nvc0_context.c b/src/gallium/drivers/nvc0/nvc0_context.c index 1ebf9e2bafb..20c1a31b5b3 100644 --- a/src/gallium/drivers/nvc0/nvc0_context.c +++ b/src/gallium/drivers/nvc0/nvc0_context.c @@ -41,6 +41,10 @@ nvc0_flush(struct pipe_context *pipe, unsigned flags, OUT_RING (chan, 0); BEGIN_RING(chan, RING_3D(TEX_CACHE_CTL), 1); OUT_RING (chan, 0x00); + } else + if ((flags & PIPE_FLUSH_RENDER_CACHE) && !(flags & PIPE_FLUSH_FRAME)) { + BEGIN_RING(chan, RING_3D(SERIALIZE), 1); + OUT_RING (chan, 0); } if (fence) { |