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:
Valentine Burley 2024-05-14 21:14:34 +00:00 committed by Marge Bot
parent 03d8620c4c
commit 826d467e40

View file

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