We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb694ca commit d74e772Copy full SHA for d74e772
utils/common/imagelib/imagelib.cpp
@@ -91,6 +91,7 @@ static const loadimage_t load_hint[] =
91
{ "%s%s.%s", "bmp", Image_LoadBMP }, // Windows Bitmap
92
{ "%s%s.%s", "tga", Image_LoadTGA }, // TrueVision Targa
93
{ "%s%s.%s", "dds", Image_LoadDDS }, // DirectDraw Surface
94
+{ "%s%s.%s", "png", Image_LoadPNG }, // Portable Network Graphics
95
{ NULL, NULL, NULL }
96
};
97
@@ -100,6 +101,7 @@ static const saveimage_t save_hint[] =
100
101
{ "%s%s.%s", "bmp", Image_SaveBMP }, // Windows Bitmap
102
{ "%s%s.%s", "tga", Image_SaveTGA }, // TrueVision Targa
103
{ "%s%s.%s", "dds", Image_SaveDDS }, // DirectDraw Surface
104
+{ "%s%s.%s", "png", Image_SavePNG }, // Portable Network Graphics
105
106
107
0 commit comments