MCPcopy Create free account
hub / github.com/dfranx/ShaderDebugger / Delete

Function Delete

src/HLSLCompiler.cpp:233–237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

231 return malloc(size * count);
232 }
233 void Delete(void* userData, void* ptr)
234 {
235 (void)userData;
236 free(ptr);
237 }
238 void* Realloc(void* userData, void* ptr, size_t size, size_t count)
239 {
240 (void)userData;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected