From c236e38b90ec94c4b9dcbfb5b5f302760589b8ee Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 27 Dec 2001 20:06:07 +0000 Subject: [PATCH] Made inline documentation on the Values enum clearer w.r.t the function of OVERRIDE_ON and OVERRIDE_OFF. --- include/osg/StateAttribute | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/osg/StateAttribute b/include/osg/StateAttribute index 77358663b..ca54e8f4c 100644 --- a/include/osg/StateAttribute +++ b/include/osg/StateAttribute @@ -76,14 +76,14 @@ class SG_EXPORT StateAttribute : public Object ON = 0x1, /** Overriding of GLMode's or StateAttributes is enabled.*/ OVERRIDE = 0x2, - /** means that associated GLMode is disabled and Override is enabled.*/ + /** Equivilant to OFF | OVERRIDE.*/ OVERRIDE_OFF = 0x2, - /** means that associated GLMode and Override is enabled.*/ + /** Equivilant to ON | OVERRIDE.*/ OVERRIDE_ON = 0x3, /** means that GLMode or StateAttribute should in inherited from above.*/ INHERIT = 0x4 }; - + /** Type identifier to differentiate between different state types. */ typedef unsigned int Type;