From 8b07bad15e84390190a70b0a7cde06b4a1e3f705 Mon Sep 17 00:00:00 2001 From: Alex Szpakowski Date: Sun, 20 Mar 2016 22:36:54 -0300 Subject: [PATCH] Fixed the build. --- src/modules/graphics/opengl/OpenGL.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/modules/graphics/opengl/OpenGL.cpp b/src/modules/graphics/opengl/OpenGL.cpp index 358633abf..276eaead3 100644 --- a/src/modules/graphics/opengl/OpenGL.cpp +++ b/src/modules/graphics/opengl/OpenGL.cpp @@ -660,6 +660,11 @@ int OpenGL::getMaxTextureUnits() const return maxTextureUnits; } +float OpenGL::getMaxPointSize() const +{ + return maxPointSize; +} + void OpenGL::updateTextureMemorySize(size_t oldsize, size_t newsize) { int64 memsize = (int64) stats.textureMemory + ((int64) newsize - (int64) oldsize);