mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-17 17:10:38 +01:00
gallium: simplify/fix buffer_offset, src_offset computation for VBO arrays
Things broke when vertex position wasn't the first attribute.
This commit is contained in:
parent
3596339d31
commit
b7dfabcaab
1 changed files with 21 additions and 2 deletions
|
|
@ -300,8 +300,8 @@ st_draw_vbo(GLcontext *ctx,
|
|||
|
||||
vbuffer[attr].buffer = NULL;
|
||||
pipe_reference_buffer(pipe, &vbuffer[attr].buffer, stobj->buffer);
|
||||
vbuffer[attr].buffer_offset = (unsigned) arrays[0]->Ptr;/* in bytes */
|
||||
velements[attr].src_offset = arrays[mesaAttr]->Ptr - arrays[0]->Ptr;
|
||||
vbuffer[attr].buffer_offset = (unsigned) arrays[mesaAttr]->Ptr;
|
||||
velements[attr].src_offset = 0;
|
||||
assert(velements[attr].src_offset <= 2048); /* 11-bit field */
|
||||
}
|
||||
else {
|
||||
|
|
@ -335,6 +335,25 @@ st_draw_vbo(GLcontext *ctx,
|
|||
assert(velements[attr].src_format);
|
||||
}
|
||||
|
||||
#if 0
|
||||
{
|
||||
GLuint i;
|
||||
char buf[100];
|
||||
for (i = 0; i < vp->num_inputs; i++) {
|
||||
printf("buffers[%d].pitch = %u\n", i, vbuffer[i].pitch);
|
||||
printf("buffers[%d].max_index = %u\n", i, vbuffer[i].max_index);
|
||||
printf("buffers[%d].buffer_offset = %u\n", i, vbuffer[i].buffer_offset);
|
||||
printf("buffers[%d].buffer = %p\n", i, (void*) vbuffer[i].buffer);
|
||||
}
|
||||
for (i = 0; i < vp->num_inputs; i++) {
|
||||
printf("vlements[%d].src_offset = %u\n", i, velements[i].src_offset);
|
||||
printf("vlements[%d].vbuffer_index = %u\n", i, velements[i].vertex_buffer_index);
|
||||
printf("vlements[%d].nr_comps = %u\n", i, velements[i].nr_components);
|
||||
printf("vlements[%d].format = %s\n", i, pf_sprint_name(buf, velements[i].src_format));
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
pipe->set_vertex_buffers(pipe, vp->num_inputs, vbuffer);
|
||||
pipe->set_vertex_elements(pipe, vp->num_inputs, velements);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue