mirror of
https://github.com/KhronosGroup/Vulkan-Utility-Libraries.git
synced 2025-05-15 01:08:39 +00:00
layer: Fix API naming to follow convention
This commit is contained in:
parent
9950e5ca49
commit
d414e86858
6 changed files with 64 additions and 44 deletions
|
@ -16,7 +16,7 @@ TEST(test_layer_settings_util, FindSettingsInChain_found_first) {
|
|||
debugReportCallbackCreateInfo.sType = VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT;
|
||||
|
||||
VkLayerSettingsCreateInfoEXT layerSettingsCreateInfo{};
|
||||
layerSettingsCreateInfo.sType = VK_STRUCTURE_TYPE_LAYER_SETTINGS_EXT;
|
||||
layerSettingsCreateInfo.sType = VK_STRUCTURE_TYPE_LAYER_SETTINGS_CREATE_INFO_EXT;
|
||||
layerSettingsCreateInfo.pNext = &debugReportCallbackCreateInfo;
|
||||
|
||||
VkInstanceCreateInfo instanceCreateInfo{};
|
||||
|
@ -28,7 +28,7 @@ TEST(test_layer_settings_util, FindSettingsInChain_found_first) {
|
|||
|
||||
TEST(test_layer_settings_util, FindSettingsInChain_found_last) {
|
||||
VkLayerSettingsCreateInfoEXT layerSettingsCreateInfo{};
|
||||
layerSettingsCreateInfo.sType = VK_STRUCTURE_TYPE_LAYER_SETTINGS_EXT;
|
||||
layerSettingsCreateInfo.sType = VK_STRUCTURE_TYPE_LAYER_SETTINGS_CREATE_INFO_EXT;
|
||||
|
||||
VkDebugReportCallbackCreateInfoEXT debugReportCallbackCreateInfo{};
|
||||
debugReportCallbackCreateInfo.sType = VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue