diff options
Diffstat (limited to 'gfx/gl/shadowStenciller.cpp')
-rw-r--r-- | gfx/gl/shadowStenciller.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gfx/gl/shadowStenciller.cpp b/gfx/gl/shadowStenciller.cpp index 89b61cc..eab4797 100644 --- a/gfx/gl/shadowStenciller.cpp +++ b/gfx/gl/shadowStenciller.cpp @@ -67,8 +67,8 @@ ShadowStenciller::renderStencil(const glTexture & stencil, const MeshBase & mesh glUniform(viewProjectionLoc, std::span<const glm::mat4> {viewProjections * [extentsMat = glm::translate(glm::ortho(-size, size, -size, size, -size, size), -centre)]( - const auto & vp) { - return vp * extentsMat; - }}); + const auto & viewProjection) { + return viewProjection * extentsMat; + }}); mesh.Draw(); } |