diff options
author | Eric Anholt <[email protected]> | 2018-04-24 15:23:27 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-04-25 09:21:54 -0700 |
commit | 503716fa8623f2f59a909adac0bd629c71661119 (patch) | |
tree | 73ea2d48b66822d4af28315becb74487c713994b /src/gallium/drivers/vc5 | |
parent | 5710532e9e5b44e40c5ed65b2dcffe66f6803d01 (diff) |
broadcom/vc5: Remove leftover vc4 MSAA lowering setup in the FS key.
Diffstat (limited to 'src/gallium/drivers/vc5')
-rw-r--r-- | src/gallium/drivers/vc5/vc5_program.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/gallium/drivers/vc5/vc5_program.c b/src/gallium/drivers/vc5/vc5_program.c index 7bad80a1684..6beb3359f29 100644 --- a/src/gallium/drivers/vc5/vc5_program.c +++ b/src/gallium/drivers/vc5/vc5_program.c @@ -363,10 +363,7 @@ vc5_setup_shared_key(struct vc5_context *vc5, struct v3d_key *key, key->tex[i].swizzle[3] = PIPE_SWIZZLE_W; } - if (sampler->texture->nr_samples > 1) { - key->tex[i].msaa_width = sampler->texture->width0; - key->tex[i].msaa_height = sampler->texture->height0; - } else if (sampler){ + if (sampler) { key->tex[i].compare_mode = sampler_state->compare_mode; key->tex[i].compare_func = sampler_state->compare_func; key->tex[i].clamp_s = |