mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 01:38:06 +02:00
tu: Change commas to semicolons in VK_EXT_map_memory_placed features
Semicolons should be used for device features.
Fixes: 220dae5870 ("tu: Implement VK_EXT_map_memory_placed")
Signed-off-by: Valentine Burley <valentine.burley@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29206>
This commit is contained in:
parent
03d8620c4c
commit
826d467e40
1 changed files with 3 additions and 3 deletions
|
|
@ -570,9 +570,9 @@ tu_get_features(struct tu_physical_device *pdevice,
|
|||
features->legacyVertexAttributes = true;
|
||||
|
||||
/* VK_EXT_map_memory_placed */
|
||||
features->memoryMapPlaced = true,
|
||||
features->memoryMapRangePlaced = false,
|
||||
features->memoryUnmapReserve = true,
|
||||
features->memoryMapPlaced = true;
|
||||
features->memoryMapRangePlaced = false;
|
||||
features->memoryUnmapReserve = true;
|
||||
|
||||
/* VK_EXT_multi_draw */
|
||||
features->multiDraw = true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue