From a7bde80658300f96c856dd4f4e5aea9eca38df5a Mon Sep 17 00:00:00 2001 From: wheremyfoodat Date: Fri, 23 Sep 2022 04:15:28 +0300 Subject: [PATCH] [PICA] There's 96 float uniforms, not 8 --- include/PICA/shader.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/PICA/shader.hpp b/include/PICA/shader.hpp index 6a233e92..be6c8966 100644 --- a/include/PICA/shader.hpp +++ b/include/PICA/shader.hpp @@ -76,7 +76,7 @@ public: u32 boolUniform; std::array intUniforms; - std::array floatUniforms; + std::array floatUniforms; std::array fixedAttributes; // Fixed vertex attributes std::array attributes; // Attributes past to the shader