From 4064333b069a09cd7cf7a6252bc9a652acd62c7e Mon Sep 17 00:00:00 2001 From: Nils Dagsson Moskopp Date: Sun, 15 Oct 2023 20:11:28 +0200 Subject: [PATCH] Adjust TGA test texture file names --- tools/generate_test_textures.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/generate_test_textures.lua b/tools/generate_test_textures.lua index a74396d2d..aace83ec3 100755 --- a/tools/generate_test_textures.lua +++ b/tools/generate_test_textures.lua @@ -19,11 +19,11 @@ local pixels_rgba = { image_rgba = tga_encoder.image(pixels_rgba) image_rgba:save( - "type2_32bpp_bt_raw.tga", + "type2_32bpp_bt.tga", { color_format="B8G8R8A8", compression="RAW" } ) image_rgba:save( - "type2_32bpp_bt_rle.tga", + "type10_32bpp_bt.tga", { color_format="B8G8R8A8", compression="RLE" } ) @@ -46,19 +46,19 @@ local pixels_rgb = { image_rgb = tga_encoder.image(pixels_rgb) image_rgb:save( - "type2_24bpp_bt_raw.tga", + "type2_24bpp_bt.tga", { color_format="B8G8R8", compression="RAW" } ) image_rgb:save( - "type2_24bpp_bt_rle.tga", + "type10_24bpp_bt.tga", { color_format="B8G8R8", compression="RLE" } ) image_rgb:save( - "type2_16bpp_bt_raw.tga", + "type2_16bpp_bt.tga", { color_format="A1R5G5B5", compression="RAW" } ) image_rgb:save( - "type2_16bpp_bt_rle.tga", + "type10_16bpp_bt.tga", { color_format="A1R5G5B5", compression="RLE" } )