etnaviv: fix compression format not set correctly in TS_MEM_CONFIG
VIVS_TS_MEM_CONFIG_COLOR_COMPRESSION_FORMAT() needs to be used. Signed-off-by: Jonathan Marek <jonathan@marek.ca> Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
This commit is contained in:
@@ -657,7 +657,8 @@ etna_try_rs_blit(struct pipe_context *pctx,
|
||||
if (src->base.nr_samples > 1) {
|
||||
uint32_t msaa_format = translate_msaa_format(src_format);
|
||||
assert(msaa_format != ETNA_NO_MATCH);
|
||||
ts_mem_config |= VIVS_TS_MEM_CONFIG_COLOR_COMPRESSION | msaa_format;
|
||||
ts_mem_config |= VIVS_TS_MEM_CONFIG_COLOR_COMPRESSION |
|
||||
VIVS_TS_MEM_CONFIG_COLOR_COMPRESSION_FORMAT(msaa_format);
|
||||
}
|
||||
|
||||
/* Always flush color and depth cache together before resolving. This works
|
||||
|
||||
@@ -179,9 +179,11 @@ etna_set_framebuffer_state(struct pipe_context *pctx,
|
||||
}
|
||||
|
||||
/* MSAA */
|
||||
if (cbuf->base.texture->nr_samples > 1)
|
||||
if (cbuf->base.texture->nr_samples > 1) {
|
||||
ts_mem_config |=
|
||||
VIVS_TS_MEM_CONFIG_COLOR_COMPRESSION | translate_msaa_format(cbuf->base.format);
|
||||
VIVS_TS_MEM_CONFIG_COLOR_COMPRESSION |
|
||||
VIVS_TS_MEM_CONFIG_COLOR_COMPRESSION_FORMAT(translate_msaa_format(cbuf->base.format));
|
||||
}
|
||||
|
||||
nr_samples_color = cbuf->base.texture->nr_samples;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user