diff options
author | Dave Airlie <[email protected]> | 2015-06-22 13:36:41 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2015-06-22 14:02:49 +1000 |
commit | 2bf5a4211ef305d90ca6133ca09c3b79e6088d50 (patch) | |
tree | 072c856e62ddbe503af03154e846a3afd1985958 /src/gallium/drivers/r600 | |
parent | 66a93a0ff9aa402c37aa9d00b4489715d611b496 (diff) |
r600g: ignore sampler views for now.
This fixes a regression in that r600 stopped working when
sampler views were pushed.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/r600_shader.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_shader.c b/src/gallium/drivers/r600/r600_shader.c index 07da1676182..af7622e9b34 100644 --- a/src/gallium/drivers/r600/r600_shader.c +++ b/src/gallium/drivers/r600/r600_shader.c @@ -725,6 +725,7 @@ static int tgsi_declaration(struct r600_shader_ctx *ctx) case TGSI_FILE_CONSTANT: case TGSI_FILE_SAMPLER: + case TGSI_FILE_SAMPLER_VIEW: case TGSI_FILE_ADDRESS: break; |