[OTR] Initial support for PNG textures (#1634)

This commit is contained in:
Garrett Cox
2022-10-01 15:33:29 -05:00
committed by GitHub
parent fba4839705
commit ec88b90ed8
15 changed files with 59 additions and 327 deletions

View File

@@ -147,7 +147,7 @@ void ImageBackend::ReadPng(const char* filename)
void ImageBackend::ReadPng(const fs::path& filename)
{
ReadPng(filename.c_str());
ReadPng(filename.string().c_str());
}
void ImageBackend::WritePng(const char* filename)