From f72dc50895e9469502a558ab6c00351bb20de8cf Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Sat, 15 Jul 2023 03:57:56 -0400 Subject: [PATCH] Fix reference to params.viewOffsetX (#26433) --- examples/webgl_postprocessing_ssaa.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/webgl_postprocessing_ssaa.html b/examples/webgl_postprocessing_ssaa.html index 89a1371618b787..1a19245f4cda09 100644 --- a/examples/webgl_postprocessing_ssaa.html +++ b/examples/webgl_postprocessing_ssaa.html @@ -185,7 +185,7 @@ const aspect = width / height; cameraP.aspect = aspect; - cameraP.setViewOffset( width, height, params.viewOffset, 0, width, height ); + cameraP.setViewOffset( width, height, params.viewOffsetX, 0, width, height ); cameraO.updateProjectionMatrix(); cameraO.left = - height * aspect;