Working identity LUT

This commit is contained in:
Ian Gulliver
2017-08-07 06:15:20 +00:00
parent 89a54867f3
commit 100c44fe4e
7 changed files with 81 additions and 14 deletions

View File

@@ -1,6 +1,7 @@
#pragma once
#include <cstdint>
#include <iostream>
constexpr uint32_t kNumColors = (1 << 16);
@@ -20,3 +21,5 @@ constexpr uint32_t Color::Difference(const Color& other) const {
((b > other.b) ? (b - other.b) : (other.b - b))
);
}
std::ostream& operator<<(std::ostream& os, const Color& color);