blob: 4d6e60cc1a6930e8e3c5c7d9417a5118e9e17659 [file] [log] [blame]
/*
* Copyright 2022 Rive
*/
#ifndef WRITE_PNG_FILE_HPP
#define WRITE_PNG_FILE_HPP
#include <stdint.h>
void WritePNGFile(uint8_t* pixels, int width, int height, bool flipY, const char* file_name);
#endif