diff options
author | Brian Paul <[email protected]> | 2014-02-08 09:51:14 -0800 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-02-14 08:21:44 -0700 |
commit | f84c830b144fd4d53f862fc6ad05541e5bf60a3b (patch) | |
tree | faf33d8578c4fed38058e337898d32b9e73beb2d /src/gallium/drivers/svga/svga_context.c | |
parent | 2f1fc8db108eb771414aa5440d4c439f63f4e7c1 (diff) |
svga: update shader code for GBS
Reviewed-by: Thomas Hellstrom <[email protected]>
Cc: "10.1" <[email protected]>
Diffstat (limited to 'src/gallium/drivers/svga/svga_context.c')
-rw-r--r-- | src/gallium/drivers/svga/svga_context.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/svga/svga_context.c b/src/gallium/drivers/svga/svga_context.c index de769cac95f..4da9a6551f6 100644 --- a/src/gallium/drivers/svga/svga_context.c +++ b/src/gallium/drivers/svga/svga_context.c @@ -197,6 +197,10 @@ void svga_context_flush( struct svga_context *svga, */ svga->rebind.rendertargets = TRUE; svga->rebind.texture_samplers = TRUE; + if (svga_have_gb_objects(svga)) { + svga->rebind.vs = TRUE; + svga->rebind.fs = TRUE; + } if (SVGA_DEBUG & DEBUG_SYNC) { if (fence) |