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 },