mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-03-06 08:51:32 +00:00
add png test
This commit is contained in:
parent
2213d0bb44
commit
80efc66a5c
1 changed files with 10 additions and 0 deletions
10
test/libpng16.cpp
Normal file
10
test/libpng16.cpp
Normal file
|
@ -0,0 +1,10 @@
|
|||
#include <png.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
png_structp png = png_create_write_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr);
|
||||
AEDI_EXPECT(png != nullptr);
|
||||
|
||||
png_destroy_write_struct(&png, nullptr);
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue