Module: Mesa Branch: master Commit: e731740388ca2822ad6a9a09f49be2d05d0a5c38 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e731740388ca2822ad6a9a09f49be2d05d0a5c38
Author: Christian Gmeiner <[email protected]> Date: Fri Apr 24 12:47:04 2020 +0200 etnaviv: drop default state for FE_HALTI5_ID_CONFIG It gets emitted when needed - see emit_halti5_only_state(..). Signed-off-by: Christian Gmeiner <[email protected]> Reviewed-by: Jonathan Marek <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4729> --- src/gallium/drivers/etnaviv/etnaviv_context.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gallium/drivers/etnaviv/etnaviv_context.c b/src/gallium/drivers/etnaviv/etnaviv_context.c index 4f8578aac78..67c68f9eb4d 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_context.c +++ b/src/gallium/drivers/etnaviv/etnaviv_context.c @@ -423,7 +423,6 @@ etna_reset_gpu_state(struct etna_context *ctx) if (screen->specs.halti >= 5) { /* Only on HALTI5+ */ etna_set_state(stream, VIVS_NTE_DESCRIPTOR_UNK14C40, 0x00000001); etna_set_state(stream, VIVS_FE_HALTI5_UNK007D8, 0x00000002); - etna_set_state(stream, VIVS_FE_HALTI5_ID_CONFIG, 0x00000000); etna_set_state(stream, VIVS_PS_SAMPLER_BASE, 0x00000000); etna_set_state(stream, VIVS_VS_SAMPLER_BASE, 0x00000020); etna_set_state(stream, VIVS_SH_CONFIG, VIVS_SH_CONFIG_RTNE_ROUNDING); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
