mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 02:38:04 +02:00
glsl: fix interface block error message
Print the stream value not the pointer to the expression, also use the unsigned format specifier. Cc: 11.1 <mesa-stable@lists.freedesktop.org> Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
parent
a31819cff8
commit
d018619d7f
1 changed files with 1 additions and 1 deletions
|
|
@ -6358,7 +6358,7 @@ ast_process_struct_or_iface_block_members(exec_list *instructions,
|
|||
qual_stream != block_stream) {
|
||||
_mesa_glsl_error(&loc, state, "stream layout qualifier on "
|
||||
"interface block member does not match "
|
||||
"the interface block (%d vs %d)", qual->stream,
|
||||
"the interface block (%u vs %u)", qual_stream,
|
||||
block_stream);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue