mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
lavapipe: use the right type for DGC mesh draws
cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41312>
(cherry picked from commit 965beb520c)
This commit is contained in:
parent
4e1f5ef336
commit
a33100ca87
2 changed files with 2 additions and 2 deletions
|
|
@ -1634,7 +1634,7 @@
|
|||
"description": "lavapipe: use the right type for DGC mesh draws",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": null,
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -4227,7 +4227,7 @@ process_sequence_ext(struct rendering_state *state,
|
|||
// only available if VK_EXT_mesh_shader is supported
|
||||
case VK_INDIRECT_COMMANDS_TOKEN_TYPE_DRAW_MESH_TASKS_EXT: {
|
||||
VkDrawMeshTasksIndirectCommandEXT *data = input;
|
||||
memcpy(&cmd->u.draw_mesh_tasks_ext, data, sizeof(VkDrawIndirectCountIndirectCommandEXT));
|
||||
memcpy(&cmd->u.draw_mesh_tasks_ext, data, sizeof(VkDrawMeshTasksIndirectCommandEXT));
|
||||
break;
|
||||
}
|
||||
case VK_INDIRECT_COMMANDS_TOKEN_TYPE_DRAW_MESH_TASKS_COUNT_EXT: {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue