aboutsummaryrefslogtreecommitdiffstats
path: root/color.h
blob: 1a16571c51a4cd7f98b09f1aa611e34c96d6a562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef COLOR_H
#define COLOR_H

#include "vec3.h"

#include <algorithm>
#include <iostream>

#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<int>(255.999 * std::clamp(r, 0.0, 1.0));
    int gbyte = static_cast<int>(255.999 * std::clamp(g, 0.0, 1.0));
    int bbyte = static_cast<int>(255.999 * std::clamp(b, 0.0, 1.0));

    // Write out the pixel color components.
    out << rbyte << ' ' << gbyte << ' ' << bbyte << '\n';
}

#endif