From cde7cdc9f8ddb69d46275a1857165c9a0b0ac5a4 Mon Sep 17 00:00:00 2001 From: Gregory Wells Date: Sat, 14 Jun 2025 14:10:08 -0400 Subject: [PATCH] rename file --- .../vulkan/src/textures/{vulkan_texure.c => vulkan_texture.c} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename rendering_api/vulkan/src/textures/{vulkan_texure.c => vulkan_texture.c} (98%) diff --git a/rendering_api/vulkan/src/textures/vulkan_texure.c b/rendering_api/vulkan/src/textures/vulkan_texture.c similarity index 98% rename from rendering_api/vulkan/src/textures/vulkan_texure.c rename to rendering_api/vulkan/src/textures/vulkan_texture.c index ac94957..32d6690 100644 --- a/rendering_api/vulkan/src/textures/vulkan_texure.c +++ b/rendering_api/vulkan/src/textures/vulkan_texture.c @@ -20,7 +20,7 @@ gnReturnCode gnCreateTextureFn(gnTexture texture, gnDevice device, const gnTextu .usage = VK_IMAGE_USAGE_SAMPLED_BIT | VK_IMAGE_USAGE_TRANSFER_DST_BIT, .samples = VK_SAMPLE_COUNT_1_BIT, .extent = { - .width = info.width, + .width = 100, .height = info.height, .depth = 1 },