From d5fc3d1e8c1f8f904e1fbe8bd1c402d560bfb596 Mon Sep 17 00:00:00 2001 From: "Randolph W. Aarseth II" Date: Fri, 4 Oct 2024 01:37:26 -0700 Subject: Rebrand Godot to Redot Add Linux Editor tests workflow matrix Add Windows Editor w/ Mono workflow matrix Add Generate Glue Code job to Windows workflow Add Build GodotSharp job to Windows workflow Add godot compatibility version references Add Godot author info Add Godot version compatibility info Add Godot donor info Add Godot authors and donors to editor_about.cpp Credits: Co-authored-by: Skogi Co-authored-by: Spartan322 Co-authored-by: swashberry Co-authored-by: Christoffer Sundbom Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar Co-authored-by: decryptedchaos Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma Co-authored-by: Aaron Benjamin Co-authored-by: SingleError Co-authored-by: Bioblaze Payne --- drivers/vulkan/rendering_device_driver_vulkan.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'drivers/vulkan/rendering_device_driver_vulkan.cpp') diff --git a/drivers/vulkan/rendering_device_driver_vulkan.cpp b/drivers/vulkan/rendering_device_driver_vulkan.cpp index d20f396281..9f16f752d4 100644 --- a/drivers/vulkan/rendering_device_driver_vulkan.cpp +++ b/drivers/vulkan/rendering_device_driver_vulkan.cpp @@ -566,7 +566,7 @@ Error RenderingDeviceDriverVulkan::_check_device_features() { // Check for required features. if (!physical_device_features.imageCubeArray || !physical_device_features.independentBlend) { - String error_string = vformat("Your GPU (%s) does not support the following features which are required to use Vulkan-based renderers in Godot:\n\n", context_device.name); + String error_string = vformat("Your GPU (%s) does not support the following features which are required to use Vulkan-based renderers in Redot:\n\n", context_device.name); if (!physical_device_features.imageCubeArray) { error_string += "- No support for image cube arrays.\n"; } @@ -731,7 +731,7 @@ Error RenderingDeviceDriverVulkan::_check_device_capabilities() { if (use_1_2_features) { #ifdef MACOS_ENABLED - ERR_FAIL_COND_V_MSG(!device_features_vk_1_2.shaderSampledImageArrayNonUniformIndexing, ERR_CANT_CREATE, "Your GPU doesn't support shaderSampledImageArrayNonUniformIndexing which is required to use the Vulkan-based renderers in Godot."); + ERR_FAIL_COND_V_MSG(!device_features_vk_1_2.shaderSampledImageArrayNonUniformIndexing, ERR_CANT_CREATE, "Your GPU doesn't support shaderSampledImageArrayNonUniformIndexing which is required to use the Vulkan-based renderers in Redot."); #endif if (enabled_device_extension_names.has(VK_KHR_SHADER_FLOAT16_INT8_EXTENSION_NAME)) { shader_capabilities.shader_float16_is_supported = device_features_vk_1_2.shaderFloat16; @@ -2523,7 +2523,7 @@ Error RenderingDeviceDriverVulkan::command_queue_execute_and_present(CommandQueu // Handling VK_SUBOPTIMAL_KHR the same as VK_SUCCESS is completely intentional. // - // Godot does not currently support native rotation in Android when creating the swap chain. It intentionally uses + // Redot does not currently support native rotation in Android when creating the swap chain. It intentionally uses // VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR instead of the current transform bits available in the surface capabilities. // Choosing the transform that leads to optimal presentation leads to distortion that makes the application unusable, // as the rotation of all the content is not handled at the moment. @@ -2864,7 +2864,7 @@ Error RenderingDeviceDriverVulkan::swap_chain_resize(CommandQueueID p_cmd_queue, } // Prefer identity transform if it's supported, use the current transform otherwise. - // This behavior is intended as Godot does not supported native rotation in platforms that use these bits. + // This behavior is intended as Redot does not supported native rotation in platforms that use these bits. // Refer to the comment in command_queue_present() for more details. VkSurfaceTransformFlagBitsKHR surface_transform_bits; if (surface_capabilities.supportedTransforms & VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR) { @@ -3236,7 +3236,7 @@ Vector RenderingDeviceDriverVulkan::shader_compile_binary_from_spirv(Ve binptr[0] = 'G'; binptr[1] = 'S'; binptr[2] = 'B'; - binptr[3] = 'D'; // Godot Shader Binary Data. + binptr[3] = 'D'; // Redot Shader Binary Data. offset += 4; encode_uint32(ShaderBinary::VERSION, binptr + offset); offset += sizeof(uint32_t); -- cgit v1.2.3