1
0
mirror of https://github.com/microsoft/DirectXTex synced 2024-12-26 03:11:02 +00:00

Fixed TGA 2.0 metadata writing for small images

This commit is contained in:
Chuck Walbourn 2020-09-28 22:40:27 -07:00
parent 61bdcf751c
commit 5624f948af

View File

@ -1881,7 +1881,7 @@ HRESULT DirectX::SaveToTGAMemory(
_Use_decl_annotations_
HRESULT DirectX::SaveToTGAFile(
const Image& image,
TGA_FLAGS /*flags*/,
TGA_FLAGS flags,
const wchar_t* szFile,
const TexMetadata* metadata) noexcept
{
@ -1922,7 +1922,7 @@ HRESULT DirectX::SaveToTGAFile(
// For small images, it is better to create an in-memory file and write it out
Blob blob;
hr = SaveToTGAMemory(image, blob);
hr = SaveToTGAMemory(image, flags, blob, metadata);
if (FAILED(hr))
return hr;