Half way through debugging texture problems

This commit is contained in:
2023-06-04 08:28:49 -07:00
parent 6dda9a6797
commit 6a61255aee
3 changed files with 7 additions and 0 deletions

View File

@ -36,6 +36,7 @@ static inline void * memoryFillWithZero(const size_t size) {
* @param pointer Pointer in memory to free.
*/
static inline void memoryFree(void *pointer) {
assertNotNull(pointer);
free(pointer);
}