diff options
author | Marek Olšák <[email protected]> | 2014-05-06 13:25:50 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-06-02 12:58:22 +0200 |
commit | 3aed75c8592e76de05f310118134cfc7cddf4360 (patch) | |
tree | 10610a4b4b46feb1dd0677dc2dc4a3ae5951ea1e /src/gallium/drivers/radeonsi/si_state.c | |
parent | 0d5ec2c615784929be095951f9269773a790a2dd (diff) |
radeon: split cayman_emit_msaa_state into 2 functions
The other function will be split up from the framebuffer state.
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_state.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_state.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c index e3b72c25c31..e9fa4332fb0 100644 --- a/src/gallium/drivers/radeonsi/si_state.c +++ b/src/gallium/drivers/radeonsi/si_state.c @@ -2025,7 +2025,8 @@ static void si_emit_framebuffer_state(struct si_context *sctx, struct r600_atom r600_write_context_reg(cs, R_028208_PA_SC_WINDOW_SCISSOR_BR, S_028208_BR_X(state->width) | S_028208_BR_Y(state->height)); - cayman_emit_msaa_state(cs, sctx->framebuffer.nr_samples); + cayman_emit_msaa_sample_locs(cs, sctx->framebuffer.nr_samples); + cayman_emit_msaa_config(cs, sctx->framebuffer.nr_samples); } /* |