Adjust TGA test texture file names

This commit is contained in:
Nils Dagsson Moskopp 2023-10-15 20:11:28 +02:00
parent e87a8fc332
commit 4064333b06
No known key found for this signature in database
GPG Key ID: A3BC671C35191080

View File

@ -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" }
)