Skip to content

Commit

Permalink
fix clang tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
stanleyljl committed Oct 10, 2023
1 parent 63099e5 commit 98eb869
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion native/cocos/renderer/pipeline/custom/NativePipeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,8 @@ void NativePipeline::addBuiltinGpuCullingPass(uint32_t cullingID,
const auto width = static_cast<uint32_t>(size.x) / 2;
const auto height = static_cast<uint32_t>(size.y) / 2;
const geometry::Frustum *frustum = nullptr;
Mat4 viewMat, projMat;
Mat4 viewMat;
Mat4 projMat;
uint32_t perspective = 1;
float nearPlane = 0.1F;
float farPlane = 1000.0F;
Expand Down

0 comments on commit 98eb869

Please sign in to comment.