mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
ir3: Don't support indirect inputs in FS
We don't actually support it. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39328>
This commit is contained in:
parent
e943ba122d
commit
78f6c70304
1 changed files with 1 additions and 1 deletions
|
|
@ -393,7 +393,7 @@ ir3_compiler_create(struct fd_device *dev, const struct fd_dev_id *dev_id,
|
|||
|
||||
compiler->nir_options.support_indirect_inputs =
|
||||
BITFIELD_BIT(MESA_SHADER_TESS_CTRL) |
|
||||
BITFIELD_BIT(MESA_SHADER_TESS_EVAL) | BITFIELD_BIT(MESA_SHADER_FRAGMENT);
|
||||
BITFIELD_BIT(MESA_SHADER_TESS_EVAL);
|
||||
compiler->nir_options.support_indirect_outputs = (uint8_t)BITFIELD_MASK(MESA_SHADER_STAGES);
|
||||
compiler->nir_options.max_offset_shift = ir3_nir_max_offset_shift;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue