🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
248 B

#ifndef EXR_IO_H_
#define EXR_IO_H_
#include "tinyexr.h"
namespace exrio
{
bool GetEXRLayers(const char *filename);
bool LoadEXRRGBA(float** rgba, int* w, int *h, const char* filename, const char* layername = nullptr);
}
#endif // EXR_IO_H_