diff options
-rw-r--r-- | libdimension/dimension/color.h | 2 | ||||
-rw-r--r-- | libdimension/raytrace.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libdimension/dimension/color.h b/libdimension/dimension/color.h index 22a1cc5..363eb56 100644 --- a/libdimension/dimension/color.h +++ b/libdimension/dimension/color.h @@ -92,7 +92,7 @@ extern const dmnsn_color dmnsn_cyan; /**< Cyan. */ CIE XYZ */ extern const dmnsn_CIE_XYZ dmnsn_whitepoint; -/** Is this color black?. */ +/** Is this color black? */ bool dmnsn_color_is_black(dmnsn_color color); /* Color conversions */ diff --git a/libdimension/raytrace.c b/libdimension/raytrace.c index 23ccd4e..1379c29 100644 --- a/libdimension/raytrace.c +++ b/libdimension/raytrace.c @@ -172,10 +172,10 @@ dmnsn_raytrace_scene_concurrent(void *ptr, unsigned int thread, /** Get the default texture. */ #define DTEXTURE(state) (state->scene->default_texture) -/** Can a texture element be accessed?. */ +/** Can a texture element be accessed? */ #define CAN_ACCESS(texture, telem) \ ((texture) && (texture)->telem) -/** Can a texture element callback be called?. */ +/** Can a texture element callback be called? */ #define CAN_CALL(texture, telem, fn) \ (CAN_ACCESS(texture, telem) && (texture)->telem->fn) |