mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 14:50:10 +01:00
number of outputs is nr_attribs - 2
This commit is contained in:
parent
1f30efb736
commit
9d6e6e86d9
1 changed files with 1 additions and 1 deletions
|
|
@ -133,7 +133,7 @@ void draw_vertex_shader_queue_flush_llvm(struct draw_context *draw)
|
|||
gallivm_prog_exec(prog, inputs, outputs, consts,
|
||||
draw->vs.queue_nr,
|
||||
draw->vertex_shader->state->num_inputs,
|
||||
draw->vertex_info.num_attribs);
|
||||
draw->vertex_info.num_attribs - 2);
|
||||
|
||||
/* store machine results */
|
||||
for (int i = 0; i < draw->vs.queue_nr; ++i) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue