mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
i965: Use real stage in "Unsupported form of variable indexing" warning.
Other stages can be miserably slow too! Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
This commit is contained in:
parent
e235ca159f
commit
055e3a3f87
1 changed files with 3 additions and 2 deletions
|
|
@ -290,8 +290,9 @@ process_glsl_ir(gl_shader_stage stage,
|
|||
options->EmitNoIndirectUniform);
|
||||
|
||||
if (unlikely(brw->perf_debug && lowered_variable_indexing)) {
|
||||
perf_debug("Unsupported form of variable indexing in FS; falling "
|
||||
"back to very inefficient code generation\n");
|
||||
perf_debug("Unsupported form of variable indexing in %s; falling "
|
||||
"back to very inefficient code generation\n",
|
||||
_mesa_shader_stage_to_abbrev(shader->Stage));
|
||||
}
|
||||
|
||||
lower_ubo_reference(shader, shader->ir);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue