MCPcopy Create free account
hub / github.com/OpenPathGuidingLibrary/openpgl / InitEXRImage

Function InitEXRImage

third-party/tinyexr/tinyexr.h:8489–8505  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8487}
8488
8489void InitEXRImage(EXRImage *exr_image) {
8490 if (exr_image == NULL) {
8491 return;
8492 }
8493
8494 exr_image->width = 0;
8495 exr_image->height = 0;
8496 exr_image->num_channels = 0;
8497
8498 exr_image->images = NULL;
8499 exr_image->tiles = NULL;
8500 exr_image->next_level = NULL;
8501 exr_image->level_x = 0;
8502 exr_image->level_y = 0;
8503
8504 exr_image->num_tiles = 0;
8505}
8506
8507void FreeEXRErrorMessage(const char *msg) {
8508 if (msg) {

Callers 7

storeFunction · 0.85
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