OpenSceneGraph/src/osg/Hint.cpp

35 lines
997 B
C++
Raw Normal View History

/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
2007-06-04 18:47:15 +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.
*
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
* 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>
#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;
2007-06-04 18:47:15 +08:00
glHint(_target, _mode);
}
void Hint::setTarget(GLenum target)
{
if (_target==target) return;
ReassignToParents needToReassingToParentsWhenMemberValueChanges(this);
_target = target;
}