Merge pull request #63542 from RandomShaper/remove_get_data

This commit is contained in:
Rémi Verschelde 2022-07-28 01:05:49 +02:00 committed by GitHub
commit eac22e3eb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2401,7 +2401,7 @@ void VulkanContext::command_begin_label(VkCommandBuffer p_command_buffer, String
return; return;
} }
CharString cs = p_label_name.utf8().get_data(); CharString cs = p_label_name.utf8();
VkDebugUtilsLabelEXT label; VkDebugUtilsLabelEXT label;
label.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT; label.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT;
label.pNext = nullptr; label.pNext = nullptr;
@ -2417,7 +2417,7 @@ void VulkanContext::command_insert_label(VkCommandBuffer p_command_buffer, Strin
if (!enabled_debug_utils) { if (!enabled_debug_utils) {
return; return;
} }
CharString cs = p_label_name.utf8().get_data(); CharString cs = p_label_name.utf8();
VkDebugUtilsLabelEXT label; VkDebugUtilsLabelEXT label;
label.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT; label.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT;
label.pNext = nullptr; label.pNext = nullptr;