2006-07-18 23:21:48 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +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.
|
|
|
|
*/
|
2002-07-12 22:25:10 +08:00
|
|
|
#include <osg/BlendFunc>
|
2006-06-30 21:50:02 +08:00
|
|
|
#include <osg/GLExtensions>
|
|
|
|
#include <osg/State>
|
|
|
|
#include <osg/Notify>
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
2003-05-07 02:04:27 +08:00
|
|
|
BlendFunc::BlendFunc():
|
|
|
|
_source_factor(SRC_ALPHA),
|
2006-06-30 21:50:02 +08:00
|
|
|
_destination_factor(ONE_MINUS_SRC_ALPHA),
|
|
|
|
_source_factor_alpha(SRC_ALPHA),
|
|
|
|
_destination_factor_alpha(ONE_MINUS_SRC_ALPHA)
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2003-05-07 02:04:27 +08:00
|
|
|
BlendFunc::BlendFunc(GLenum source, GLenum destination):
|
|
|
|
_source_factor(source),
|
2006-06-30 21:50:02 +08:00
|
|
|
_destination_factor(destination),
|
|
|
|
_source_factor_alpha(source),
|
|
|
|
_destination_factor_alpha(destination)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
BlendFunc::BlendFunc(GLenum source, GLenum destination, GLenum source_alpha, GLenum destination_alpha):
|
|
|
|
_source_factor(source),
|
|
|
|
_destination_factor(destination),
|
|
|
|
_source_factor_alpha(source_alpha),
|
|
|
|
_destination_factor_alpha(destination_alpha)
|
2003-05-07 02:04:27 +08:00
|
|
|
{
|
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-07-12 22:25:10 +08:00
|
|
|
BlendFunc::~BlendFunc()
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-06-30 21:50:02 +08:00
|
|
|
void BlendFunc::apply(State& state) const
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
2006-06-30 21:50:02 +08:00
|
|
|
if (_source_factor != _source_factor_alpha ||
|
|
|
|
_destination_factor != _destination_factor_alpha)
|
|
|
|
{
|
|
|
|
// 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->isBlendFuncSeparateSupported())
|
|
|
|
{
|
2010-05-28 23:47:52 +08:00
|
|
|
OSG_WARN<<"Warning: BlendFunc::apply(..) failed, BlendFuncSeparate is not support by OpenGL driver, falling back to BlendFunc."<<std::endl;
|
2006-06-30 21:50:02 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
extensions->glBlendFuncSeparate(_source_factor, _destination_factor, _source_factor_alpha, _destination_factor_alpha);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
glBlendFunc( _source_factor, _destination_factor );
|
2001-01-11 00:32:10 +08:00
|
|
|
}
|
2006-06-30 21:50:02 +08:00
|
|
|
|
|
|
|
|
|
|
|
typedef buffered_value< ref_ptr<BlendFunc::Extensions> > BufferedExtensions;
|
|
|
|
static BufferedExtensions s_extensions;
|
|
|
|
|
|
|
|
BlendFunc::Extensions* BlendFunc::getExtensions(unsigned int contextID,bool createIfNotInitalized)
|
|
|
|
{
|
|
|
|
if (!s_extensions[contextID] && createIfNotInitalized) s_extensions[contextID] = new Extensions(contextID);
|
|
|
|
return s_extensions[contextID].get();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlendFunc::setExtensions(unsigned int contextID,Extensions* extensions)
|
|
|
|
{
|
|
|
|
s_extensions[contextID] = extensions;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BlendFunc::Extensions::Extensions(unsigned int contextID)
|
|
|
|
{
|
|
|
|
setupGLExtensions(contextID);
|
|
|
|
}
|
|
|
|
|
|
|
|
BlendFunc::Extensions::Extensions(const Extensions& rhs):
|
|
|
|
Referenced()
|
|
|
|
{
|
|
|
|
_isBlendFuncSeparateSupported = rhs._isBlendFuncSeparateSupported;
|
|
|
|
_glBlendFuncSeparate = rhs._glBlendFuncSeparate;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlendFunc::Extensions::lowestCommonDenominator(const Extensions& rhs)
|
|
|
|
{
|
|
|
|
if (!rhs._isBlendFuncSeparateSupported) _isBlendFuncSeparateSupported = false;
|
|
|
|
if (!rhs._glBlendFuncSeparate) _glBlendFuncSeparate = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlendFunc::Extensions::setupGLExtensions(unsigned int contextID)
|
|
|
|
{
|
2009-11-11 03:16:36 +08:00
|
|
|
_isBlendFuncSeparateSupported = OSG_GLES2_FEATURES || OSG_GL3_FEATURES ||
|
|
|
|
isGLExtensionSupported(contextID, "GL_EXT_blend_func_separate") ||
|
|
|
|
strncmp((const char*)glGetString(GL_VERSION), "1.4", 3) >= 0;
|
2006-06-30 21:50:02 +08:00
|
|
|
|
2007-09-10 23:19:23 +08:00
|
|
|
setGLExtensionFuncPtr(_glBlendFuncSeparate, "glBlendFuncSeparate", "glBlendFuncSeparateEXT");
|
2006-06-30 21:50:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void BlendFunc::Extensions::glBlendFuncSeparate(GLenum sfactorRGB,
|
|
|
|
GLenum dfactorRGB,
|
|
|
|
GLenum sfactorAlpha,
|
|
|
|
GLenum dfactorAlpha) const
|
|
|
|
{
|
|
|
|
if (_glBlendFuncSeparate)
|
|
|
|
{
|
2007-09-10 23:19:23 +08:00
|
|
|
_glBlendFuncSeparate(sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha);
|
2006-06-30 21:50:02 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-28 23:47:52 +08:00
|
|
|
OSG_WARN<<"Error: glBlendFuncSeparate not supported by OpenGL driver"<<std::endl;
|
2006-06-30 21:50:02 +08:00
|
|
|
}
|
|
|
|
}
|