From 8695e11436087339441e86333d2e4cfa2fb2afc1 Mon Sep 17 00:00:00 2001 From: Lynix Date: Thu, 26 Apr 2018 22:45:24 +0200 Subject: [PATCH] Fix whitespace --- src/Nazara/Graphics/DeferredGeometryPass.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Nazara/Graphics/DeferredGeometryPass.cpp b/src/Nazara/Graphics/DeferredGeometryPass.cpp index dcea7d305..dbd500ea4 100644 --- a/src/Nazara/Graphics/DeferredGeometryPass.cpp +++ b/src/Nazara/Graphics/DeferredGeometryPass.cpp @@ -649,15 +649,15 @@ namespace Nz mapper.Unmap(); // No point to keep the buffer open any longer - // Quad buffer (used for instancing of billboards and sprites) - //Note: UV are computed in the shader + // Quad buffer (used for instancing of billboards and sprites) + //Note: UV are computed in the shader s_quadVertexBuffer.Reset(VertexDeclaration::Get(VertexLayout_XY), 4, DataStorage_Hardware, 0); float vertices[2 * 4] = { -0.5f, -0.5f, - 0.5f, -0.5f, + 0.5f, -0.5f, -0.5f, 0.5f, - 0.5f, 0.5f, + 0.5f, 0.5f, }; s_quadVertexBuffer.FillRaw(vertices, 0, sizeof(vertices));