From 4dbe214d86716f91afeac839a42e7233cf07580f Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 12 Sep 2023 11:26:28 +0100 Subject: [PATCH] Fixed typos --- src/vsg/state/ViewDependentState.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vsg/state/ViewDependentState.cpp b/src/vsg/state/ViewDependentState.cpp index 1b597cf84..b8d086aa3 100644 --- a/src/vsg/state/ViewDependentState.cpp +++ b/src/vsg/state/ViewDependentState.cpp @@ -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; @@ -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); }