mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
iris: Fix for PIPE_CAP_SIGNED_VERTEX_BUFFER_OFFSET
This fixes ext_transform_feedback-builtin-varyings gl_Position after the combination of my transform feedback reworks and my vertex buffer reworks (?)
This commit is contained in:
parent
392fba5f31
commit
598a78849e
1 changed files with 1 additions and 1 deletions
|
|
@ -2379,7 +2379,7 @@ iris_set_vertex_buffers(struct pipe_context *ctx,
|
|||
if (res) {
|
||||
vb.BufferSize = res->bo->size;
|
||||
vb.BufferStartingAddress =
|
||||
ro_bo(NULL, res->bo->gtt_offset + buffer->buffer_offset);
|
||||
ro_bo(NULL, res->bo->gtt_offset + (int) buffer->buffer_offset);
|
||||
} else {
|
||||
vb.NullVertexBuffer = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue