From 56f415f7a8c2ab99315dbfe4b5ceb4a9da4437c6 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 19 May 2005 21:42:38 +0000 Subject: [PATCH] From Martin Aumueller, fixed copy and paste error on getActiveUniforms(). --- include/osgUtil/SceneView | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osgUtil/SceneView b/include/osgUtil/SceneView index 6a958d07b..333c49198 100644 --- a/include/osgUtil/SceneView +++ b/include/osgUtil/SceneView @@ -141,8 +141,8 @@ class OSGUTIL_EXPORT SceneView : public osg::Referenced, public osg::CullSetting /** Set the uniforms that SceneView should set set up on each frame.*/ void setActiveUniforms(int activeUniforms) { _activeUniforms = activeUniforms; } - /** Set the uniforms that SceneView should set set up on each frame.*/ - int getActiveUniforms(int activeUniforms) const { return _activeUniforms; } + /** Get the uniforms that SceneView should set set up on each frame.*/ + int getActiveUniforms() const { return _activeUniforms; } void updateUniforms();