Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
robertosfield committed Sep 12, 2023
1 parent ef40962 commit 4dbe214
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vsg/state/ViewDependentState.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ void ViewDependentState::traverse(RecordTraversal& rt, const View& view)
auto clip_near = projectionMatrix * eye_near;
auto clip_far = projectionMatrix * eye_far;

auto ls_bounds = computeFrsutumBounds(clip_near.z, clip_far.z, clipToWorld);
auto ls_bounds = computeFrustumBounds(clip_near.z, clip_far.z, clipToWorld);

auto centre = (ls_bounds.min + ls_bounds.max) * 0.5;
ls_bounds.min -= centre;
Expand Down Expand Up @@ -339,7 +339,7 @@ void ViewDependentState::traverse(RecordTraversal& rt, const View& view)
}
else
{
auto ls_bounds = computeFrsutumBounds(1.0, 0.0, clipToWorld);;
auto ls_bounds = computeFrustumBounds(1.0, 0.0, clipToWorld);;
info(" ls_bounds = ", ls_bounds);
}

Expand Down

0 comments on commit 4dbe214

Please sign in to comment.