From c2e865df7d12c4c548076a92ae8c75bca0530c3a Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 24 Aug 2021 20:39:04 +0900 Subject: [PATCH] Move commented code to area that makes more sense --- example02_threaded_raytracing/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example02_threaded_raytracing/src/main.cpp b/example02_threaded_raytracing/src/main.cpp index acc7aa1..25a2720 100644 --- a/example02_threaded_raytracing/src/main.cpp +++ b/example02_threaded_raytracing/src/main.cpp @@ -125,11 +125,11 @@ int main(int argc, char **argv) { } } - // auto pixels = Ex02::RT::renderGraySphere( - // outputWidth, outputHeight, threadCount); std::cout << "Rendering image of width " << outputWidth << " and height " << outputHeight << " with " << threadCount << " thread(s)..." << std::endl; + // auto pixels = Ex02::RT::renderGraySphere( + // outputWidth, outputHeight, threadCount); auto pixels = Ex02::RT::renderColorsWithSpheres(outputWidth, outputHeight, threadCount);