From 8a8fab0c68d867d1e1e870252819d15e2b6d0c6f Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 14 May 2024 16:32:10 -0400 Subject: initial commit --- color.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 color.h (limited to 'color.h') diff --git a/color.h b/color.h new file mode 100644 index 0000000..1a16571 --- /dev/null +++ b/color.h @@ -0,0 +1,34 @@ +#ifndef COLOR_H +#define COLOR_H + +#include "vec3.h" + +#include +#include + +#define GAMMA_CORRECT + +using color = vec3; + +void write_color(std::ostream& out, const color& pixel_color) { + auto r = pixel_color.x(); + auto g = pixel_color.y(); + auto b = pixel_color.z(); + +#ifdef GAMMA_CORRECT + if (r > 0) r = sqrt(r); + if (g > 0) g = sqrt(g); + if (b > 0) b = sqrt(b); +#endif + + // Translate the [0,1] component values to the byte range [0,255]. + int rbyte = static_cast(255.999 * std::clamp(r, 0.0, 1.0)); + int gbyte = static_cast(255.999 * std::clamp(g, 0.0, 1.0)); + int bbyte = static_cast(255.999 * std::clamp(b, 0.0, 1.0)); + + // Write out the pixel color components. + out << rbyte << ' ' << gbyte << ' ' << bbyte << '\n'; +} + +#endif + -- cgit v1.2.3