Changeset 10071
- Timestamp:
- 04/22/09 15:07:02 (4 years ago)
- Location:
- OpenSceneGraph/trunk
- Files:
-
- 3 modified
-
include/osg/TexGenNode (modified) (1 diff)
-
src/osg/TexGenNode.cpp (modified) (3 diffs)
-
src/osgWrappers/osgViewer/GraphicsWindow.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osg/TexGenNode
r5958 r10071 69 69 70 70 unsigned int _textureUnit; 71 StateAttribute::GLModeValue _value;72 71 osg::ref_ptr<TexGen> _texgen; 73 72 -
OpenSceneGraph/trunk/src/osg/TexGenNode.cpp
r8785 r10071 22 22 23 23 _textureUnit = 0; 24 _value = StateAttribute::ON;25 24 setStateSet(new StateSet); 26 25 _texgen = new TexGen; … … 30 29 Group(cn,copyop), 31 30 _textureUnit(cn._textureUnit), 32 _value(cn._value),33 31 _texgen(static_cast<TexGen*>(copyop(cn._texgen.get()))), 34 32 _referenceFrame(cn._referenceFrame) … … 44 42 45 43 _textureUnit = 0; 46 _value = StateAttribute::ON;47 44 setStateSet(new StateSet); 48 45 _texgen = texgen; -
OpenSceneGraph/trunk/src/osgWrappers/osgViewer/GraphicsWindow.cpp
r9775 r10071 38 38 I_EnumLabel(osgViewer::GraphicsWindow::TextCursor); 39 39 I_EnumLabel(osgViewer::GraphicsWindow::CrosshairCursor); 40 I_EnumLabel(osgViewer::GraphicsWindow::HandCursor); 40 41 I_EnumLabel(osgViewer::GraphicsWindow::UpDownCursor); 41 42 I_EnumLabel(osgViewer::GraphicsWindow::LeftRightCursor);
