Added osg::BlendFunci, osg::BlendEquationi and osg::ColorMaski StateAttrirbutes that wrap the glBlendFunci, glBlendEquationi and glColorMaski functions

git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14563 16af8721-9629-0410-8352-f15c8da7e697
This commit is contained in:
Robert Osfield
2014-12-02 17:12:56 +00:00
parent a9cab19ddb
commit 457d41d385
14 changed files with 448 additions and 2 deletions

View File

@@ -40,6 +40,9 @@ BlendEquation::Extensions::Extensions(unsigned int contextID)
setGLExtensionFuncPtr(glBlendEquation, "glBlendEquation", "glBlendEquationEXT");
setGLExtensionFuncPtr(glBlendEquationSeparate, "glBlendEquationSeparate", "glBlendEquationSeparateEXT");
setGLExtensionFuncPtr(glBlendEquationi, "glBlendEquationi", "glBlendEquationiARB");
setGLExtensionFuncPtr(glBlendEquationSeparatei, "glBlendEquationSeparatei", "glBlendEquationSeparateiARB");
}
BlendEquation::BlendEquation():

View File

@@ -0,0 +1,55 @@
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2014 Robert Osfield
*
* 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/BlendEquationi>
#include <osg/GLExtensions>
#include <osg/State>
using namespace osg;
BlendEquationi::BlendEquationi():
_index(0)
{
}
BlendEquationi::~BlendEquationi()
{
}
void BlendEquationi::apply(State& state) const
{
const Extensions* extensions = state.get<Extensions>();
if (_equationRGB == _equationAlpha)
{
if (extensions->glBlendEquationi)
{
extensions->glBlendEquationi(static_cast<GLuint>(_index), static_cast<GLenum>(_equationRGB));
}
else
{
OSG_WARN<<"Warning: BlendEquationi::apply(..) not supported by OpenGL driver." << std::endl;
}
}
else
{
if (extensions->glBlendEquationSeparatei)
{
extensions->glBlendEquationSeparatei(static_cast<GLuint>(_index), static_cast<GLenum>(_equationRGB), static_cast<GLenum>(_equationAlpha));
}
else
{
OSG_WARN<<"Warning: BlendEquation::apply(..) failed, glBlendEquationSeparatei not supported by OpenGL driver." << std::endl;
}
}
}

View File

@@ -25,6 +25,9 @@ BlendFunc::Extensions::Extensions(unsigned int contextID)
strncmp((const char*)glGetString(GL_VERSION), "1.4", 3) >= 0;
setGLExtensionFuncPtr(glBlendFuncSeparate, "glBlendFuncSeparate", "glBlendFuncSeparateEXT");
setGLExtensionFuncPtr(glBlendFunci, "glBlendFunci", "glBlendFunciARB");
setGLExtensionFuncPtr(glBlendFuncSeparatei, "glBlendFuncSeparatei", "glBlendFuncSeparateiARB");
}
BlendFunc::BlendFunc():

56
src/osg/BlendFunci.cpp Normal file
View File

@@ -0,0 +1,56 @@
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2014 Robert Osfield
*
* 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/BlendFunci>
#include <osg/GLExtensions>
#include <osg/State>
using namespace osg;
BlendFunci::BlendFunci():
_index(0)
{
}
BlendFunci::~BlendFunci()
{
}
void BlendFunci::apply(State& state) const
{
const Extensions* extensions = state.get<Extensions>();
if (_source_factor != _source_factor_alpha ||
_destination_factor != _destination_factor_alpha)
{
if (extensions->glBlendFuncSeparatei)
{
extensions->glBlendFuncSeparatei(static_cast<GLuint>(_index), _source_factor, _destination_factor, _source_factor_alpha, _destination_factor_alpha);
}
else
{
OSG_WARN<<"Warning: BlendFunc::apply(..) failed, BlendFuncSeparatei is not support by OpenGL driver."<<std::endl;
}
}
else
{
if (extensions->glBlendFunci)
{
extensions->glBlendFunci(static_cast<GLuint>(_index), _source_factor, _destination_factor);
}
else
{
OSG_WARN<<"Warning: BlendFunc::apply(..) failed, BlendFunci is not support by OpenGL driver."<<std::endl;
}
}
}

View File

@@ -30,7 +30,9 @@ SET(TARGET_H
${HEADER_PATH}/Billboard
${HEADER_PATH}/BlendColor
${HEADER_PATH}/BlendEquation
${HEADER_PATH}/BlendEquationi
${HEADER_PATH}/BlendFunc
${HEADER_PATH}/BlendFunci
${HEADER_PATH}/BoundingBox
${HEADER_PATH}/BoundingSphere
${HEADER_PATH}/BoundsChecking
@@ -48,6 +50,7 @@ SET(TARGET_H
${HEADER_PATH}/ClusterCullingCallback
${HEADER_PATH}/CollectOccludersVisitor
${HEADER_PATH}/ColorMask
${HEADER_PATH}/ColorMaski
${HEADER_PATH}/ColorMatrix
${HEADER_PATH}/ComputeBoundsVisitor
${HEADER_PATH}/ConvexPlanarOccluder
@@ -230,7 +233,9 @@ SET(TARGET_SRC
Billboard.cpp
BlendColor.cpp
BlendEquation.cpp
BlendEquationi.cpp
BlendFunc.cpp
BlendFunci.cpp
BufferIndexBinding.cpp
BufferObject.cpp
Callback.cpp
@@ -243,6 +248,7 @@ SET(TARGET_SRC
ClusterCullingCallback.cpp
CollectOccludersVisitor.cpp
ColorMask.cpp
ColorMaski.cpp
ColorMatrix.cpp
ComputeBoundsVisitor.cpp
ConvexPlanarOccluder.cpp

47
src/osg/ColorMaski.cpp Normal file
View File

@@ -0,0 +1,47 @@
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2014 Robert Osfield
*
* 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/ColorMaski>
#include <osg/GLExtensions>
#include <osg/State>
using namespace osg;
// Set up extensions
ColorMaski::Extensions::Extensions(unsigned int contextID)
{
setGLExtensionFuncPtr(glColorMaski, "glColorMaski", "glColorMaskiARB");
}
ColorMaski::ColorMaski():
_index(0)
{
}
ColorMaski::~ColorMaski()
{
}
void ColorMaski::apply(State& state) const
{
const Extensions* extensions = state.get<Extensions>();
if (extensions->glColorMaski)
{
extensions->glColorMaski((GLboolean)_index, (GLboolean)_red,(GLboolean)_green,(GLboolean)_blue,(GLboolean)_alpha);
}
else
{
OSG_WARN<<"Warning: ColorMaski::apply(..) failed, glColorMaski is not support by OpenGL driver."<<std::endl;
}
}

View File

@@ -0,0 +1,12 @@
#include <osg/BlendEquationi>
#include <osgDB/ObjectWrapper>
#include <osgDB/InputStream>
#include <osgDB/OutputStream>
REGISTER_OBJECT_WRAPPER( BlendEquationi,
new osg::BlendEquationi,
osg::BlendEquationi,
"osg::Object osg::StateAttribute osg::BlendEquation osg::BlendEquationi" )
{
ADD_UINT_SERIALIZER( Index, 0 );
}

View File

@@ -0,0 +1,12 @@
#include <osg/BlendFunci>
#include <osgDB/ObjectWrapper>
#include <osgDB/InputStream>
#include <osgDB/OutputStream>
REGISTER_OBJECT_WRAPPER( BlendFunci,
new osg::BlendFunci,
osg::BlendFunci,
"osg::Object osg::StateAttribute osg::BlendFunc osg::BlendFunci" )
{
ADD_UINT_SERIALIZER( Index, 0 );
}

View File

@@ -0,0 +1,12 @@
#include <osg/ColorMaski>
#include <osgDB/ObjectWrapper>
#include <osgDB/InputStream>
#include <osgDB/OutputStream>
REGISTER_OBJECT_WRAPPER( ColorMaski,
new osg::ColorMaski,
osg::ColorMaski,
"osg::Object osg::StateAttribute osg::ColorMask osg::ColorMaski" )
{
ADD_UINT_SERIALIZER( Index, 0 );
}