d3d10umd: Fix compilation

Commit eb20ef92 changed 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:
Max R
2024-01-24 17:39:21 +03:00
committed by Marge Bot
parent 55413e33dc
commit 68b3b1573b

View File

@@ -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;
}