mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-08 07:50:27 +01:00
[965] Avoid overloaded use of the term 'input' for clarity.
This commit is contained in:
parent
931685e243
commit
df44fefced
1 changed files with 9 additions and 13 deletions
|
|
@ -451,29 +451,25 @@ GLboolean brw_upload_vertices( struct brw_context *brw,
|
|||
if (nr_uploads > 1 &&
|
||||
interleave &&
|
||||
interleave <= 256) {
|
||||
struct brw_vertex_element *input0 = upload[0];
|
||||
|
||||
input0->glarray = copy_array_to_vbo_array(brw, 0,
|
||||
input0->glarray,
|
||||
interleave,
|
||||
input0->count);
|
||||
upload[0]->glarray = copy_array_to_vbo_array(brw, 0,
|
||||
upload[0]->glarray,
|
||||
interleave,
|
||||
upload[0]->count);
|
||||
|
||||
for (i = 1; i < nr_uploads; i++) {
|
||||
upload[i]->glarray = interleaved_vbo_array(brw,
|
||||
i,
|
||||
input0->glarray,
|
||||
upload[0]->glarray,
|
||||
upload[i]->glarray,
|
||||
ptr);
|
||||
}
|
||||
}
|
||||
else {
|
||||
for (i = 0; i < nr_uploads; i++) {
|
||||
struct brw_vertex_element *input = upload[i];
|
||||
|
||||
input->glarray = copy_array_to_vbo_array(brw, i,
|
||||
input->glarray,
|
||||
input->element_size,
|
||||
input->count);
|
||||
upload[i]->glarray = copy_array_to_vbo_array(brw, i,
|
||||
upload[i]->glarray,
|
||||
upload[i]->element_size,
|
||||
upload[i]->count);
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue