Skip to content

Commit

Permalink
Mention where parallelization is done
Browse files Browse the repository at this point in the history
  • Loading branch information
StuckiSimon committed Aug 30, 2024
1 parent 863868d commit 7f8faac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion report/parts/results.tex
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ \subsubsection{Scene Preparation}

\subsection*{Ray Generator}

The ray generator is responsible for casting rays into the scene according to the view projection. The path tracer employs a backward ray tracing approach, tracing rays from the camera into the scene. For many applications, especially photorealistic rendering, perspective projection is prevalent. Therefore, based on the assessed use case, the path tracer uses perspective projection. See \coderef{VIEWPROJECTION} for implementation.
The ray generator is responsible for casting rays into the scene according to the view projection. For parallelization, each ray is cast in a separate thread; the degree of possible parallelization depends on the image's resolution. The path tracer employs a backward ray tracing approach, tracing rays from the camera into the scene. For many applications, especially photorealistic rendering, perspective projection is prevalent. Therefore, based on the assessed use case, the path tracer uses perspective projection. See \coderef{VIEWPROJECTION} for implementation.

\label{sec:anti-aliasing-implementation}

Expand Down

0 comments on commit 7f8faac

Please sign in to comment.