mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 13:10:10 +01:00
i965: Don't set NirOptions for stages that will use the vec4 backend.
We've started using NirOptions != NULL to mean "we're using NIR for this stage." However, when INTEL_USE_NIR=1, we set it for a bunch of stages that still use the vec4 backend, and thus definitely aren't using NIR. For example, if INTEL_USE_NIR=1 we disable the GLSL IR cubemap normalization pass, even for vertex shaders and geometry shaders. This is wrong, but breaks a very uncommon case. When I started deleting GLSL IR for stages where we claimed to be using NIR, this bug quickly became apparent. For now, only set it for fragment shaders, and vertex shaders if brw->scalar_vs is set. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
This commit is contained in:
parent
f9048ee3c8
commit
c2a0600d5b
1 changed files with 6 additions and 9 deletions
|
|
@ -560,12 +560,6 @@ brw_initialize_context_constants(struct brw_context *brw)
|
|||
.lower_ffma = true,
|
||||
};
|
||||
|
||||
bool use_nir_default[MESA_SHADER_STAGES];
|
||||
use_nir_default[MESA_SHADER_VERTEX] = false;
|
||||
use_nir_default[MESA_SHADER_GEOMETRY] = false;
|
||||
use_nir_default[MESA_SHADER_FRAGMENT] = false;
|
||||
use_nir_default[MESA_SHADER_COMPUTE] = false;
|
||||
|
||||
/* We want the GLSL compiler to emit code that uses condition codes */
|
||||
for (int i = 0; i < MESA_SHADER_STAGES; i++) {
|
||||
ctx->Const.ShaderCompilerOptions[i].MaxIfDepth = brw->gen < 6 ? 16 : UINT_MAX;
|
||||
|
|
@ -579,9 +573,6 @@ brw_initialize_context_constants(struct brw_context *brw)
|
|||
(i == MESA_SHADER_FRAGMENT);
|
||||
ctx->Const.ShaderCompilerOptions[i].EmitNoIndirectUniform = false;
|
||||
ctx->Const.ShaderCompilerOptions[i].LowerClipDistance = true;
|
||||
|
||||
if (brw_env_var_as_boolean("INTEL_USE_NIR", use_nir_default[i]))
|
||||
ctx->Const.ShaderCompilerOptions[i].NirOptions = &nir_options;
|
||||
}
|
||||
|
||||
ctx->Const.ShaderCompilerOptions[MESA_SHADER_VERTEX].OptimizeForAOS = true;
|
||||
|
|
@ -594,8 +585,14 @@ brw_initialize_context_constants(struct brw_context *brw)
|
|||
ctx->Const.ShaderCompilerOptions[MESA_SHADER_VERTEX].EmitNoIndirectOutput = true;
|
||||
ctx->Const.ShaderCompilerOptions[MESA_SHADER_VERTEX].EmitNoIndirectTemp = true;
|
||||
ctx->Const.ShaderCompilerOptions[MESA_SHADER_VERTEX].OptimizeForAOS = false;
|
||||
|
||||
if (brw_env_var_as_boolean("INTEL_USE_NIR", false))
|
||||
ctx->Const.ShaderCompilerOptions[MESA_SHADER_VERTEX].NirOptions = &nir_options;
|
||||
}
|
||||
|
||||
if (brw_env_var_as_boolean("INTEL_USE_NIR", false))
|
||||
ctx->Const.ShaderCompilerOptions[MESA_SHADER_FRAGMENT].NirOptions = &nir_options;
|
||||
|
||||
/* ARB_viewport_array */
|
||||
if (brw->gen >= 7 && ctx->API == API_OPENGL_CORE) {
|
||||
ctx->Const.MaxViewports = GEN7_NUM_VIEWPORTS;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue