MCPcopy Create free account
hub / github.com/TheRealMJP/DeferredTexturing / def_alloc_func

Function def_alloc_func

SampleFramework12/v1.00/TinyEXR.cpp:1468–1471  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1466#ifndef MINIZ_NO_ZLIB_APIS
1467
1468static void *def_alloc_func(void *opaque, size_t items, size_t size) {
1469 (void)opaque, (void)items, (void)size;
1470 return MZ_MALLOC(items * size);
1471}
1472static void def_free_func(void *opaque, void *address) {
1473 (void)opaque, (void)address;
1474 MZ_FREE(address);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected