layer: fix const to VkLayerSettingsCreateInfoEXT

This commit is contained in:
Christophe 2023-05-23 19:14:43 +02:00 committed by Christophe
parent 61f5ab9ebf
commit fbb84f1271

View file

@ -131,9 +131,9 @@ typedef struct VkLayerSettingEXT {
typedef struct VkLayerSettingsCreateInfoEXT {
VkStructureType sType;
void *pNext;
const void *pNext;
uint32_t settingCount;
VkLayerSettingEXT *pSettings;
const VkLayerSettingEXT *pSettings;
} VkLayerSettingsCreateInfoEXT;
#ifdef __cplusplus