mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-26 16:48:13 +02:00
r600g: fix vs export count
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=39572 Signed-off-by: Vadim Girlin <vadimgirlin@gmail.com>
This commit is contained in:
parent
69720cb0c4
commit
9ca791d380
2 changed files with 2 additions and 2 deletions
|
|
@ -1747,7 +1747,7 @@ void evergreen_pipe_shader_vs(struct pipe_context *ctx, struct r600_pipe_shader
|
|||
|
||||
r600_pipe_state_add_reg(rstate,
|
||||
R_0286C4_SPI_VS_OUT_CONFIG,
|
||||
S_0286C4_VS_EXPORT_COUNT(rshader->noutput - 2),
|
||||
S_0286C4_VS_EXPORT_COUNT(rshader->noutput - 1),
|
||||
0xFFFFFFFF, NULL);
|
||||
r600_pipe_state_add_reg(rstate,
|
||||
R_028860_SQ_PGM_RESOURCES_VS,
|
||||
|
|
|
|||
|
|
@ -1505,7 +1505,7 @@ void r600_pipe_shader_vs(struct pipe_context *ctx, struct r600_pipe_shader *shad
|
|||
|
||||
r600_pipe_state_add_reg(rstate,
|
||||
R_0286C4_SPI_VS_OUT_CONFIG,
|
||||
S_0286C4_VS_EXPORT_COUNT(rshader->noutput - 2),
|
||||
S_0286C4_VS_EXPORT_COUNT(rshader->noutput - 1),
|
||||
0xFFFFFFFF, NULL);
|
||||
r600_pipe_state_add_reg(rstate,
|
||||
R_028868_SQ_PGM_RESOURCES_VS,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue