🛠️🐜 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

  1. #ifndef EXR_IO_H_
  2. #define EXR_IO_H_
  3. #include "tinyexr.h"
  4. namespace exrio
  5. {
  6. bool GetEXRLayers(const char *filename);
  7. bool LoadEXRRGBA(float** rgba, int* w, int *h, const char* filename, const char* layername = nullptr);
  8. }
  9. #endif // EXR_IO_H_