Skip to content

Commit

Permalink
📝 Add comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasGilg committed Feb 1, 2025
1 parent 72a8e50 commit cc7dc92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cs-graphics/LuminanceMipMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ static const char* sComputeAverage = R"(
shared float sTotal[1024];
shared float sMax[1024];
// This shader does a standard parallel reduction based on
// This shader does a standard parallel reduction based on a CUDA webinar:
// https://developer.download.nvidia.com/assets/cuda/files/reduction.pdf
void main() {
uint tid = gl_LocalInvocationID.x;
uint gid = gl_GlobalInvocationID.x;
Expand Down

0 comments on commit cc7dc92

Please sign in to comment.