Skip to content

Commit

Permalink
fixed some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
gralkapk committed Jul 9, 2024
1 parent f7972ab commit 97b93be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/optix_hpg/cuda_resources/raygen.cu
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ namespace optix_hpg {
return;
if (pixelID.y >= self.fbSize.y)
return;
const int pixelIdx = pixelID.x + self.fbSize.x * pixelID.y;
//const int pixelIdx = pixelID.x + self.fbSize.x * pixelID.y;

const FrameState* fs = &self.frameStateBuffer[0];

Expand Down
2 changes: 1 addition & 1 deletion plugins/optix_hpg/src/optix/utils_host.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ typedef struct RayH {
glm::vec3 direction;
float tMin;
float tMax;
};
} RayH;
} // namespace optix_hpg
} // namespace megamol

0 comments on commit 97b93be

Please sign in to comment.