aboutsummaryrefslogtreecommitdiff
path: root/include/lib/color.h
diff options
context:
space:
mode:
authorChristian Cunningham <cc@local.lan>2025-03-04 19:14:05 -0800
committerChristian Cunningham <cc@local.lan>2025-03-04 19:14:05 -0800
commit17857e46daf1f9d692ec09f555eb25eb84547db4 (patch)
treedb43918e6690e90dcd40f9144f7eb08288c48a9e /include/lib/color.h
parent8e719bf59a78559b5128cefa0479c71245cbdcb2 (diff)
Remove line comments
Diffstat (limited to 'include/lib/color.h')
-rw-r--r--include/lib/color.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/lib/color.h b/include/lib/color.h
index b999510..5e7128b 100644
--- a/include/lib/color.h
+++ b/include/lib/color.h
@@ -5,17 +5,14 @@
#include <stddef.h>
#include <lib/bool.h>
-//-----------------------------------------------
// Color Equal to Background
// Background: zeros in RGB, alpha can be whatever
bool_t color_zero(uint8_t* color1, size_t channels);
-//-----------------------------------------------
// Color Equality
// Determine if two colors are identical
bool_t color_equal(uint8_t* color1, uint8_t* color2, size_t channels);
-//-----------------------------------------------
// Print out the `channels` length color vector
void print_color(uint8_t* color, size_t channels);