diff options
author | Keuin <[email protected]> | 2022-04-14 20:55:49 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2022-04-14 20:55:49 +0800 |
commit | 5f9a664b0f0955cf3e49b5da9ce6d5835cf5f73f (patch) | |
tree | 0caa3f8e5859fa2a689e685641d6bf24c508ea8a /aa.h | |
parent | ab29b428bdaa9f5a4691c9896b0fcaa9d7368225 (diff) |
Make hitlist<T> no longer a generic class (but hitlist::color<T>(...) is now a generic member function).
Diffstat (limited to 'aa.h')
-rw-r--r-- | aa.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ public: delete subviews; } - virtual bitmap<T> render(const hitlist<T> &world, vec3d viewpoint, uint16_t image_width, uint16_t image_height) { + virtual bitmap<T> render(const hitlist &world, vec3d viewpoint, uint16_t image_width, uint16_t image_height) { const unsigned hwcc = std::thread::hardware_concurrency(); std::cerr << "Rendering with " << hwcc << " thread(s)." << std::endl; |