diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2014-05-06 21:23:55 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2014-05-06 21:26:35 -0400 |
commit | ef98e35c9c44148611aa2c23325431d19405c781 (patch) | |
tree | 885b5485c115be24d74713b2af9e61357fcc9039 /libdimension/texture.c | |
parent | b9ffc8ca0a2f130a869ba780eeea6787760e860a (diff) | |
download | dimension-ef98e35c9c44148611aa2c23325431d19405c781.tar.xz |
malloc: New DMNSN_MALLOC() macro to save a sizeof().
Diffstat (limited to 'libdimension/texture.c')
-rw-r--r-- | libdimension/texture.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdimension/texture.c b/libdimension/texture.c index 24ff9af..516a50b 100644 --- a/libdimension/texture.c +++ b/libdimension/texture.c @@ -1,5 +1,5 @@ /************************************************************************* - * Copyright (C) 2009-2011 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2009-2014 Tavian Barnes <tavianator@tavianator.com> * * * * This file is part of The Dimension Library. * * * @@ -29,7 +29,7 @@ dmnsn_texture * dmnsn_new_texture(void) { - dmnsn_texture *texture = dmnsn_malloc(sizeof(dmnsn_texture)); + dmnsn_texture *texture = DMNSN_MALLOC(dmnsn_texture); texture->pigment = NULL; texture->finish = dmnsn_new_finish(); texture->trans = dmnsn_identity_matrix(); |