mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
d3d10umd: Fix compilation
Commiteb20ef92changed signature of cso_set_vertex_buffers. But this change wasn't reflected in d3d10umd. Update call to cso_set_vertex_buffers to fix it. Fixes:eb20ef927("gallium: remove unbind_trailing_count from set_vertex_buffers") Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27238>
This commit is contained in:
parent
55413e33dc
commit
68b3b1573b
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ IaSetVertexBuffers(D3D10DDI_HDEVICE hDevice,
|
|||
|
||||
/* Resubmit old and new vertex buffers.
|
||||
*/
|
||||
cso_set_vertex_buffers(pDevice->cso, PIPE_MAX_ATTRIBS, 0, false, pDevice->vertex_buffers);
|
||||
cso_set_vertex_buffers(pDevice->cso, PIPE_MAX_ATTRIBS, false, pDevice->vertex_buffers);
|
||||
pDevice->velems_changed = true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue