diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2014-06-12 13:45:06 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2014-06-12 13:45:06 -0400 |
commit | 0fec83ebc89bd6b86f772d942b7c39b13f773d3a (patch) | |
tree | f2d10a7fe784773b4722843ce3f2bbe1c8e0db62 /libdimension/dimension/texture.h | |
parent | bb976e3a5cc01abecf6729eb511f75fb21c6d2c4 (diff) | |
download | dimension-0fec83ebc89bd6b86f772d942b7c39b13f773d3a.tar.xz |
Add a C89 compliance test for the headers.
Technically we still require a couple things from C99 like "bool",
but it works with -std=c89 under gcc.
Diffstat (limited to 'libdimension/dimension/texture.h')
-rw-r--r-- | libdimension/dimension/texture.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libdimension/dimension/texture.h b/libdimension/dimension/texture.h index 58f5a80..df08a4a 100644 --- a/libdimension/dimension/texture.h +++ b/libdimension/dimension/texture.h @@ -23,15 +23,15 @@ * Object textures. */ -/// A complete texture. +/** A complete texture. */ typedef struct { - dmnsn_pigment *pigment; ///< Pigment. - dmnsn_finish finish; ///< Finish. + dmnsn_pigment *pigment; /**< Pigment. */ + dmnsn_finish finish; /**< Finish. */ - dmnsn_matrix trans; ///< Transformation matrix. - dmnsn_matrix trans_inv; ///< The inverse of the transformation matrix. + dmnsn_matrix trans; /**< Transformation matrix. */ + dmnsn_matrix trans_inv; /**< The inverse of the transformation matrix. */ - bool initialized; ///< @internal Whether the texture is initialized yet. + bool initialized; /**< @internal Whether the texture is initialized yet. */ } dmnsn_texture; /** |