From 864817d0d0cdad21403b60a010c512b8d7422e38 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sun, 10 Apr 2005 21:26:49 +0000 Subject: [PATCH] From Randall Hopper, fixed typo of setRedMask. --- include/osg/ColorMask | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/ColorMask b/include/osg/ColorMask index 9b9fa8631..1f1ec88b1 100644 --- a/include/osg/ColorMask +++ b/include/osg/ColorMask @@ -70,7 +70,7 @@ class SG_EXPORT ColorMask : public StateAttribute } - inline void getRedMask(bool mask) { _red=mask; } + inline void setRedMask(bool mask) { _red=mask; } inline bool getRedMask() const { return _red; } inline void setGreenMask(bool mask) { _green=mask; }