2012-03-22 01:36:20 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2007-06-04 18:47:15 +08:00
|
|
|
*
|
2012-03-22 01:36:20 +08:00
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
2007-06-04 18:47:15 +08:00
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2007-06-04 18:47:15 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-03-22 01:36:20 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2007-06-04 18:47:15 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <osg/Hint>
|
2007-12-08 21:29:31 +08:00
|
|
|
#include <osg/StateSet>
|
2007-06-04 18:47:15 +08:00
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
2009-01-07 20:27:45 +08:00
|
|
|
void Hint::apply(State& /*state*/) const
|
2007-06-04 18:47:15 +08:00
|
|
|
{
|
|
|
|
if (_target==GL_NONE || _mode==GL_NONE) return;
|
2009-10-25 19:52:01 +08:00
|
|
|
|
2007-06-04 18:47:15 +08:00
|
|
|
glHint(_target, _mode);
|
|
|
|
}
|
2007-12-08 21:29:31 +08:00
|
|
|
|
|
|
|
void Hint::setTarget(GLenum target)
|
2009-10-25 19:52:01 +08:00
|
|
|
{
|
2007-12-08 21:29:31 +08:00
|
|
|
if (_target==target) return;
|
|
|
|
|
2016-06-25 19:24:19 +08:00
|
|
|
ReassignToParents needToReassingToParentsWhenMemberValueChanges(this);
|
2007-12-08 21:29:31 +08:00
|
|
|
|
|
|
|
_target = target;
|
|
|
|
}
|
|
|
|
|