| | 13 | const int _eq_nb=8; |
| | 14 | const osg::BlendEquation::Equation _equations[_eq_nb]= |
| | 15 | { |
| | 16 | osg::BlendEquation::FUNC_ADD, |
| | 17 | osg::BlendEquation::FUNC_SUBTRACT, |
| | 18 | osg::BlendEquation::FUNC_REVERSE_SUBTRACT, |
| | 19 | osg::BlendEquation::RGBA_MIN, |
| | 20 | osg::BlendEquation::RGBA_MAX, |
| | 21 | osg::BlendEquation::ALPHA_MIN, |
| | 22 | osg::BlendEquation::ALPHA_MAX, |
| | 23 | osg::BlendEquation::LOGIC_OP |
| | 24 | }; |
| | 25 | |
| | 26 | const char* _equations_name[_eq_nb]= |
| | 27 | { |
| | 28 | "osg::BlendEquation::FUNC_ADD", |
| | 29 | "osg::BlendEquation::FUNC_SUBTRACT", |
| | 30 | "osg::BlendEquation::FUNC_REVERSE_SUBTRACT", |
| | 31 | "osg::BlendEquation::RGBA_MIN", |
| | 32 | "osg::BlendEquation::RGBA_MAX", |
| | 33 | "osg::BlendEquation::ALPHA_MIN", |
| | 34 | "osg::BlendEquation::ALPHA_MAX", |
| | 35 | "osg::BlendEquation::LOGIC_OP" |
| | 36 | }; |
| | 37 | |
| 42 | | const osg::BlendEquation::Equation TechniqueEventHandler::_equations[_eq_nb]={ |
| 43 | | osg::BlendEquation::FUNC_ADD, |
| 44 | | osg::BlendEquation::FUNC_SUBTRACT, |
| 45 | | osg::BlendEquation::FUNC_REVERSE_SUBTRACT, |
| 46 | | osg::BlendEquation::RGBA_MIN, |
| 47 | | osg::BlendEquation::RGBA_MAX, |
| 48 | | osg::BlendEquation::ALPHA_MIN, |
| 49 | | osg::BlendEquation::ALPHA_MAX, |
| 50 | | osg::BlendEquation::LOGIC_OP |
| 51 | | }; |
| 52 | | |
| 53 | | const char* TechniqueEventHandler::_equations_name[_eq_nb]={ |
| 54 | | "osg::BlendEquation::FUNC_ADD", |
| 55 | | "osg::BlendEquation::FUNC_SUBTRACT", |
| 56 | | "osg::BlendEquation::FUNC_REVERSE_SUBTRACT", |
| 57 | | "osg::BlendEquation::RGBA_MIN", |
| 58 | | "osg::BlendEquation::RGBA_MAX", |
| 59 | | "osg::BlendEquation::ALPHA_MIN", |
| 60 | | "osg::BlendEquation::ALPHA_MAX", |
| 61 | | "osg::BlendEquation::LOGIC_OP" |
| 62 | | }; |
| | 64 | |