MCPcopy Create free account
hub / github.com/RenderKit/embree / InitEXRImage

Function InitEXRImage

tutorials/common/image/tinyexr.h:8578–8594  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8576}
8577
8578void InitEXRImage(EXRImage *exr_image) {
8579 if (exr_image == NULL) {
8580 return;
8581 }
8582
8583 exr_image->width = 0;
8584 exr_image->height = 0;
8585 exr_image->num_channels = 0;
8586
8587 exr_image->images = NULL;
8588 exr_image->tiles = NULL;
8589 exr_image->next_level = NULL;
8590 exr_image->level_x = 0;
8591 exr_image->level_y = 0;
8592
8593 exr_image->num_tiles = 0;
8594}
8595
8596void FreeEXRErrorMessage(const char *msg) {
8597 if (msg) {

Callers 5

DecodeChunkFunction · 0.85
LoadEXRWithLayerFunction · 0.85
LoadEXRFromMemoryFunction · 0.85
SaveEXRToMemoryFunction · 0.85
SaveEXRFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected