mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 06:10:13 +01:00
radv/gfx10: do not declare streamout SGPRS
Streamout is completely different on GFX10. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
352365c5e2
commit
ce3b5d4c17
1 changed files with 3 additions and 0 deletions
|
|
@ -837,6 +837,9 @@ declare_streamout_sgprs(struct radv_shader_context *ctx, gl_shader_stage stage,
|
|||
{
|
||||
int i;
|
||||
|
||||
if (ctx->ac.chip_class >= GFX10)
|
||||
return;
|
||||
|
||||
/* Streamout SGPRs. */
|
||||
if (ctx->shader_info->info.so.num_outputs) {
|
||||
assert(stage == MESA_SHADER_VERTEX ||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue