From 1b9c6e524c25a7b7eb6ceb4b763f67ca3d4c1232 Mon Sep 17 00:00:00 2001 From: valid-ptr Date: Tue, 29 Dec 2020 15:04:17 +0300 Subject: [PATCH] Wrong argument name rename: uniformMap -> defineMap --- include/osg/State | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osg/State b/include/osg/State index 990560e58..68f89f8a7 100644 --- a/include/osg/State +++ b/include/osg/State @@ -1392,12 +1392,12 @@ class OSG_EXPORT State : public Referenced inline void popModeList(ModeMap& modeMap,const StateSet::ModeList& modeList); inline void popAttributeList(AttributeMap& attributeMap,const StateSet::AttributeList& attributeList); inline void popUniformList(UniformMap& uniformMap,const StateSet::UniformList& uniformList); - inline void popDefineList(DefineMap& uniformMap,const StateSet::DefineList& defineList); + inline void popDefineList(DefineMap& defineMap,const StateSet::DefineList& defineList); inline void applyModeList(ModeMap& modeMap,const StateSet::ModeList& modeList); inline void applyAttributeList(AttributeMap& attributeMap,const StateSet::AttributeList& attributeList); inline void applyUniformList(UniformMap& uniformMap,const StateSet::UniformList& uniformList); - inline void applyDefineList(DefineMap& uniformMap,const StateSet::DefineList& defineList); + inline void applyDefineList(DefineMap& defineMap,const StateSet::DefineList& defineList); inline void applyModeMap(ModeMap& modeMap); inline void applyAttributeMap(AttributeMap& attributeMap);