Quick (and dirty) change to be able to use OpenMP for rendering.

This commit is contained in:
Godzil
2020-02-26 02:18:54 +00:00
parent 7a96d42874
commit ed347e304d
2 changed files with 11 additions and 1 deletions

View File

@@ -12,6 +12,8 @@
#include <ray.h>
#include <camera.h>
#include <stdio.h>
Camera::Camera(uint32_t hsize, uint32_t vsize, double fov) : verticalSize(vsize), horizontalSize(hsize), fieldOfView(fov)
{
double aspectRatio = (double)hsize / (double)vsize;
@@ -62,6 +64,7 @@ Canvas Camera::render(World world, uint32_t depth)
for(y = 0; y < this->verticalSize; y++)
{
#pragma omp parallel for
for(x = 0; x < this->horizontalSize; x++)
{
Ray r = this->rayForPixel(x, y);