FastUIDraw
Macros
fastuidraw_memory.hpp File Reference

file fastuidraw_memory.hpp More...

#include <cstdlib>
#include <fastuidraw/util/fastuidraw_memory_private.hpp>
Include dependency graph for fastuidraw_memory.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define FASTUIDRAWcalloc(nmemb, size)   fastuidraw::memory::calloc_implement(nmemb, size, __FILE__, __LINE__)
 
#define FASTUIDRAWdelete(ptr)
 
#define FASTUIDRAWfree(ptr)   fastuidraw::memory::free_implement(ptr, __FILE__, __LINE__)
 
#define FASTUIDRAWmalloc(size)   fastuidraw::memory::malloc_implement(size, __FILE__, __LINE__)
 
#define FASTUIDRAWnew   ::new(__FILE__, __LINE__)
 
#define FASTUIDRAWrealloc(ptr, size)   fastuidraw::memory::realloc_implement(ptr, size, __FILE__, __LINE__)
 

Detailed Description

file fastuidraw_memory.hpp

Adapted from: WRATHNew.hpp and WRATHmemory.hpp of WRATH:

Copyright 2013 by Nomovok Ltd. Contact: info@.nosp@m.nomo.nosp@m.vok.c.nosp@m.om This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.

Author
Kevin Rogovin kevin.nosp@m..rog.nosp@m.ovin@.nosp@m.nomo.nosp@m.vok.c.nosp@m.om
Kevin Rogovin kevin.nosp@m..rog.nosp@m.ovin@.nosp@m.gmai.nosp@m.l.com

Definition in file fastuidraw_memory.hpp.