2006-07-18 23:21:48 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-09-17 20:04:48 +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
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
|
|
|
#include <osg/BlendColor>
|
|
|
|
#include <osg/GLExtensions>
|
|
|
|
#include <osg/State>
|
|
|
|
#include <osg/Notify>
|
2004-03-03 23:38:22 +08:00
|
|
|
#include <osg/buffered_value>
|
2003-09-17 20:04:48 +08:00
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
|
|
|
|
|
|
|
BlendColor::BlendColor() :
|
2006-09-19 04:54:48 +08:00
|
|
|
_constantColor(1.0f,1.0f,1.0f,1.0f)
|
2006-02-09 20:20:42 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
BlendColor::BlendColor(const osg::Vec4& constantColor):
|
|
|
|
_constantColor(constantColor)
|
2003-09-17 20:04:48 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
BlendColor::~BlendColor()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlendColor::apply(State& state) const
|
|
|
|
{
|
|
|
|
// get the contextID (user defined ID of 0 upwards) for the
|
|
|
|
// current OpenGL context.
|
|
|
|
const unsigned int contextID = state.getContextID();
|
|
|
|
|
|
|
|
const Extensions* extensions = getExtensions(contextID,true);
|
|
|
|
|
|
|
|
if (!extensions->isBlendColorSupported())
|
|
|
|
{
|
|
|
|
notify(WARN)<<"Warning: BlendColor::apply(..) failed, BlendColor is not support by OpenGL driver."<<std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
extensions->glBlendColor(_constantColor[0], _constantColor[1],
|
|
|
|
_constantColor[2], _constantColor[3]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef buffered_value< ref_ptr<BlendColor::Extensions> > BufferedExtensions;
|
|
|
|
static BufferedExtensions s_extensions;
|
|
|
|
|
|
|
|
BlendColor::Extensions* BlendColor::getExtensions(unsigned int contextID,bool createIfNotInitalized)
|
|
|
|
{
|
2005-04-26 21:15:27 +08:00
|
|
|
if (!s_extensions[contextID] && createIfNotInitalized) s_extensions[contextID] = new Extensions(contextID);
|
2003-09-17 20:04:48 +08:00
|
|
|
return s_extensions[contextID].get();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlendColor::setExtensions(unsigned int contextID,Extensions* extensions)
|
|
|
|
{
|
|
|
|
s_extensions[contextID] = extensions;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-26 21:15:27 +08:00
|
|
|
BlendColor::Extensions::Extensions(unsigned int contextID)
|
2003-09-17 20:04:48 +08:00
|
|
|
{
|
2005-04-26 21:15:27 +08:00
|
|
|
setupGLExtenions(contextID);
|
2003-09-17 20:04:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
BlendColor::Extensions::Extensions(const Extensions& rhs):
|
|
|
|
Referenced()
|
|
|
|
{
|
|
|
|
_isBlendColorSupported = rhs._isBlendColorSupported;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlendColor::Extensions::lowestCommonDenominator(const Extensions& rhs)
|
|
|
|
{
|
|
|
|
if (!rhs._isBlendColorSupported) _isBlendColorSupported = false;
|
|
|
|
if (!rhs._glBlendColor) _glBlendColor = 0;
|
|
|
|
}
|
|
|
|
|
2005-04-26 21:15:27 +08:00
|
|
|
void BlendColor::Extensions::setupGLExtenions(unsigned int contextID)
|
2003-09-17 20:04:48 +08:00
|
|
|
{
|
2005-04-26 21:15:27 +08:00
|
|
|
_isBlendColorSupported = isGLExtensionSupported(contextID,"GL_EXT_blend_color") ||
|
2003-09-17 20:04:48 +08:00
|
|
|
strncmp((const char*)glGetString(GL_VERSION),"1.2",3)>=0;
|
|
|
|
|
|
|
|
_glBlendColor = getGLExtensionFuncPtr("glBlendColor", "glBlendColorEXT");
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlendColor::Extensions::glBlendColor(GLclampf red , GLclampf green , GLclampf blue , GLclampf alpha) const
|
|
|
|
{
|
|
|
|
if (_glBlendColor)
|
|
|
|
{
|
|
|
|
typedef void (APIENTRY * GLBlendColorProc) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
|
|
|
|
((GLBlendColorProc)_glBlendColor)(red, green, blue, alpha);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
notify(WARN)<<"Error: glBlendColor not supported by OpenGL driver"<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|