diff options
author | sotech117 <michael_foiani@brown.edu> | 2023-12-13 02:09:18 -0500 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2023-12-13 02:27:52 -0500 |
commit | 7de05373a0423a24f9719b0158bc9a78e3238aef (patch) | |
tree | 51e565dc819bbf58e8663938795354af3f0b22a3 /src | |
parent | 013eb9922e148aac7aa580b5987ae52ebac38b0d (diff) |
small changes
Diffstat (limited to 'src')
-rw-r--r-- | src/accelerate/myqtconcurrent.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/accelerate/myqtconcurrent.cpp b/src/accelerate/myqtconcurrent.cpp index 1615bca..bf99070 100644 --- a/src/accelerate/myqtconcurrent.cpp +++ b/src/accelerate/myqtconcurrent.cpp @@ -56,10 +56,6 @@ void RayTracer::renderParallel(RGBA *imageData, const RayTraceScene &scene) // get the pixel color glm::vec4 pixelColor = getPixelFromRay(pWorld, dWorld, scene, 0); - if (pixelColor.r > 0) { - std::cout << "pixelColor.r: " << pixelColor.r << ", x" << imageCol << ", y" << imageRow << ", z" << imageDepth << std::endl; - } - // set the pixel color int index = imageRow * scene.width() + imageCol; imageData[index] = RGBA{ |