diff --git a/src/compiler/shader_info.h b/src/compiler/shader_info.h index 8c632de5387..844815d39c1 100644 --- a/src/compiler/shader_info.h +++ b/src/compiler/shader_info.h @@ -193,6 +193,11 @@ typedef struct shader_info { /* Whether flrp has been lowered. */ bool flrp_lowered:1; + /* Whether nir_lower_io has been called to lower derefs. + * nir_variables for inputs and outputs might not be present in the IR. + */ + bool io_lowered:1; + /* Whether the shader writes memory, including transform feedback. */ bool writes_memory:1;