From 6772a1deb630d4359b14dd27de01a3ddab2e565e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sat, 26 Feb 2005 21:44:16 +0000 Subject: [PATCH] From Paul Melis, fixed typo of setFunctionMask. --- include/osg/Stencil | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/Stencil b/include/osg/Stencil index 62ff506ca..5198ec198 100644 --- a/include/osg/Stencil +++ b/include/osg/Stencil @@ -91,7 +91,7 @@ class SG_EXPORT Stencil : public StateAttribute inline void setFunctionRef(int ref) { _funcRef=ref; } inline int getFunctionRef() const { return _funcRef; } - inline void getFunctionMask(unsigned int mask) { _funcMask=mask; } + inline void setFunctionMask(unsigned int mask) { _funcMask=mask; } inline unsigned int getFunctionMask() const { return _funcMask; }