layer: fix const to VkLayerSettingsCreateInfoEXT
This commit is contained in:
parent
61f5ab9ebf
commit
fbb84f1271
1 changed files with 2 additions and 2 deletions
|
@ -131,9 +131,9 @@ typedef struct VkLayerSettingEXT {
|
||||||
|
|
||||||
typedef struct VkLayerSettingsCreateInfoEXT {
|
typedef struct VkLayerSettingsCreateInfoEXT {
|
||||||
VkStructureType sType;
|
VkStructureType sType;
|
||||||
void *pNext;
|
const void *pNext;
|
||||||
uint32_t settingCount;
|
uint32_t settingCount;
|
||||||
VkLayerSettingEXT *pSettings;
|
const VkLayerSettingEXT *pSettings;
|
||||||
} VkLayerSettingsCreateInfoEXT;
|
} VkLayerSettingsCreateInfoEXT;
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue