mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-20 09:53:46 +01:00
Adjust TGA test texture file names
This commit is contained in:
parent
e87a8fc332
commit
4064333b06
@ -19,11 +19,11 @@ local pixels_rgba = {
|
|||||||
image_rgba = tga_encoder.image(pixels_rgba)
|
image_rgba = tga_encoder.image(pixels_rgba)
|
||||||
|
|
||||||
image_rgba:save(
|
image_rgba:save(
|
||||||
"type2_32bpp_bt_raw.tga",
|
"type2_32bpp_bt.tga",
|
||||||
{ color_format="B8G8R8A8", compression="RAW" }
|
{ color_format="B8G8R8A8", compression="RAW" }
|
||||||
)
|
)
|
||||||
image_rgba:save(
|
image_rgba:save(
|
||||||
"type2_32bpp_bt_rle.tga",
|
"type10_32bpp_bt.tga",
|
||||||
{ color_format="B8G8R8A8", compression="RLE" }
|
{ color_format="B8G8R8A8", compression="RLE" }
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -46,19 +46,19 @@ local pixels_rgb = {
|
|||||||
image_rgb = tga_encoder.image(pixels_rgb)
|
image_rgb = tga_encoder.image(pixels_rgb)
|
||||||
|
|
||||||
image_rgb:save(
|
image_rgb:save(
|
||||||
"type2_24bpp_bt_raw.tga",
|
"type2_24bpp_bt.tga",
|
||||||
{ color_format="B8G8R8", compression="RAW" }
|
{ color_format="B8G8R8", compression="RAW" }
|
||||||
)
|
)
|
||||||
image_rgb:save(
|
image_rgb:save(
|
||||||
"type2_24bpp_bt_rle.tga",
|
"type10_24bpp_bt.tga",
|
||||||
{ color_format="B8G8R8", compression="RLE" }
|
{ color_format="B8G8R8", compression="RLE" }
|
||||||
)
|
)
|
||||||
|
|
||||||
image_rgb:save(
|
image_rgb:save(
|
||||||
"type2_16bpp_bt_raw.tga",
|
"type2_16bpp_bt.tga",
|
||||||
{ color_format="A1R5G5B5", compression="RAW" }
|
{ color_format="A1R5G5B5", compression="RAW" }
|
||||||
)
|
)
|
||||||
image_rgb:save(
|
image_rgb:save(
|
||||||
"type2_16bpp_bt_rle.tga",
|
"type10_16bpp_bt.tga",
|
||||||
{ color_format="A1R5G5B5", compression="RLE" }
|
{ color_format="A1R5G5B5", compression="RLE" }
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user