diff options
author | Marek Olšák <[email protected]> | 2017-02-23 22:15:17 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-03-03 15:29:30 +0100 |
commit | f8c823b103131c0100139fdab3b3ccc516e702c0 (patch) | |
tree | 38e11b6f2831c4306d28c35e222786ab2bc7d6be /src | |
parent | b5744310d4a282d4f58dbc62659c5f50416730d4 (diff) |
radeonsi: set unorm=1 for TGSI_TEXTURE_SHADOWRECT as well
It was harmless, because we also set unorm in the sampler state.
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_shader.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_shader.c b/src/gallium/drivers/radeonsi/si_shader.c index f84eefc3ddc..5fe3eef38fc 100644 --- a/src/gallium/drivers/radeonsi/si_shader.c +++ b/src/gallium/drivers/radeonsi/si_shader.c @@ -4122,7 +4122,8 @@ static void set_tex_fetch_args(struct si_shader_context *ctx, { struct gallivm_state *gallivm = &ctx->gallivm; unsigned num_args; - unsigned is_rect = target == TGSI_TEXTURE_RECT; + unsigned is_rect = target == TGSI_TEXTURE_RECT || + target == TGSI_TEXTURE_SHADOWRECT; /* Pad to power of two vector */ while (count < util_next_power_of_two(count)) |