| 364 | } EXRMultiPartImage; |
| 365 | |
| 366 | typedef struct TDeepImage { |
| 367 | const char **channel_names; |
| 368 | float ***image; // image[channels][scanlines][samples] |
| 369 | int **offset_table; // offset_table[scanline][offsets] |
| 370 | int num_channels; |
| 371 | int width; |
| 372 | int height; |
| 373 | int pad0; |
| 374 | } DeepImage; |
| 375 | |
| 376 | // @deprecated { For backward compatibility. Not recommended to use. } |
| 377 | // Loads single-frame OpenEXR image. Assume EXR image contains A(single channel |
nothing calls this directly
no outgoing calls
no test coverage detected