| 6182 | } |
| 6183 | |
| 6184 | int LoadEXR(float **out_rgba, int *width, int *height, const char *filename, |
| 6185 | const char **err) { |
| 6186 | return LoadEXRWithLayer(out_rgba, width, height, filename, |
| 6187 | /* layername */ NULL, err); |
| 6188 | } |
| 6189 | |
| 6190 | int LoadEXRWithLayer(float **out_rgba, int *width, int *height, |
| 6191 | const char *filename, const char *layername, |
nothing calls this directly
no test coverage detected