From bb976e3a5cc01abecf6729eb511f75fb21c6d2c4 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 12 Jun 2014 11:05:10 -0400 Subject: Add a C99 conformance test for the headers. --- libdimension/dimension/texture.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libdimension/dimension/texture.h') diff --git a/libdimension/dimension/texture.h b/libdimension/dimension/texture.h index df08a4a..58f5a80 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; /** -- cgit v1.2.3