Since commit
75881bed9e1 "i965: Rework the TCS passthrough shader to
use NIR." the created nir_shader is not dummy, and it is compiled by
the backend like the others.
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
if (tcp) {
nir = tcp->program.nir;
} else {
- /* Create a dummy nir_shader. We won't actually use NIR code to
- * generate assembly (it's easier to generate assembly directly),
- * but the whole compiler assumes one of these exists.
- */
const nir_shader_compiler_options *options =
ctx->Const.ShaderCompilerOptions[MESA_SHADER_TESS_CTRL].NirOptions;
nir = create_passthrough_tcs(mem_ctx, compiler, options, key);