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:
@@ -110,6 +110,9 @@ class OSG_EXPORT BlendEquation : public StateAttribute
|
||||
|
||||
void (GL_APIENTRY * glBlendEquation)(GLenum mode);
|
||||
void (GL_APIENTRY * glBlendEquationSeparate)(GLenum modeRGB, GLenum modeAlpha);
|
||||
|
||||
void (GL_APIENTRY * glBlendEquationi)(GLuint buf, GLenum mode);
|
||||
void (GL_APIENTRY * glBlendEquationSeparatei)(GLuint buf, GLenum modeRGB, GLenum modeAlpha);
|
||||
};
|
||||
|
||||
protected :
|
||||
|
||||
78
include/osg/BlendEquationi
Normal file
78
include/osg/BlendEquationi
Normal file
@@ -0,0 +1,78 @@
|
||||
/* -*-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.
|
||||
*/
|
||||
|
||||
#ifndef OSG_BLENDEQUATIONI
|
||||
#define OSG_BLENDEQUATIONI 1
|
||||
|
||||
#include <osg/BlendEquation>
|
||||
|
||||
namespace osg {
|
||||
|
||||
/** Encapsulates glBlendEquationi function : the index version of glBlendEquation for multiple render target.
|
||||
*/
|
||||
class OSG_EXPORT BlendEquationi : public BlendEquation
|
||||
{
|
||||
public :
|
||||
|
||||
BlendEquationi();
|
||||
|
||||
BlendEquationi(unsigned int buf, Equation equation):
|
||||
BlendEquation(equation),
|
||||
_index(buf) {}
|
||||
|
||||
BlendEquationi(unsigned int buf, Equation equationRGB, Equation equationAlpha):
|
||||
BlendEquation(equationRGB, equationAlpha),
|
||||
_index(buf) {}
|
||||
|
||||
|
||||
/** Copy constructor using CopyOp to manage deep vs shallow copy. */
|
||||
BlendEquationi(const BlendEquationi& cm,const CopyOp& copyop=CopyOp::SHALLOW_COPY):
|
||||
BlendEquation(cm,copyop),
|
||||
_index(cm._index) {}
|
||||
|
||||
META_StateAttribute(osg, BlendEquationi, BLENDEQUATION);
|
||||
|
||||
/** Return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs. */
|
||||
virtual int compare(const StateAttribute& sa) const
|
||||
{
|
||||
// Check for equal types, then create the rhs variable
|
||||
// used by the COMPARE_StateAttribute_Parameter macros below.
|
||||
COMPARE_StateAttribute_Types(BlendEquationi,sa)
|
||||
|
||||
COMPARE_StateAttribute_Parameter(_index);
|
||||
|
||||
return BlendEquation::compare(sa);
|
||||
}
|
||||
|
||||
/** Return the buffer index as the member identifier.*/
|
||||
virtual unsigned int getMember() const { return _index; }
|
||||
|
||||
/** Set the renderbuffer index of the BlendEquationi. */
|
||||
void setIndex(unsigned int buf) { _index = buf; }
|
||||
|
||||
/** Get the renderbuffer index of the BlendEquationi. */
|
||||
unsigned int getIndex() const { return _index; }
|
||||
|
||||
virtual void apply(State& state) const;
|
||||
|
||||
protected:
|
||||
|
||||
virtual ~BlendEquationi();
|
||||
|
||||
unsigned int _index;
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -15,8 +15,6 @@
|
||||
#define OSG_BLENDFUNC 1
|
||||
|
||||
#include <osg/StateAttribute>
|
||||
#include <osg/GLExtensions>
|
||||
|
||||
|
||||
#ifndef GL_VERSION_1_2
|
||||
#define GL_CONSTANT_COLOR 0x8001
|
||||
@@ -166,6 +164,9 @@ class OSG_EXPORT BlendFunc : public StateAttribute
|
||||
|
||||
bool isBlendFuncSeparateSupported;
|
||||
void (GL_APIENTRY * glBlendFuncSeparate) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) ;
|
||||
|
||||
void (GL_APIENTRY * glBlendFunci) (GLuint buf, GLenum src, GLenum dst);
|
||||
void (GL_APIENTRY * glBlendFuncSeparatei) (GLuint buf, GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) ;
|
||||
};
|
||||
|
||||
|
||||
|
||||
77
include/osg/BlendFunci
Normal file
77
include/osg/BlendFunci
Normal file
@@ -0,0 +1,77 @@
|
||||
/* -*-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.
|
||||
*/
|
||||
|
||||
#ifndef OSG_BLENDFUNCI
|
||||
#define OSG_BLENDFUNCI 1
|
||||
|
||||
#include <osg/BlendFunc>
|
||||
|
||||
namespace osg {
|
||||
|
||||
/** Encapsulates glBlendFunci function : the index version of glBlendEquation for multiple render target.
|
||||
*/
|
||||
class OSG_EXPORT BlendFunci : public BlendFunc
|
||||
{
|
||||
public :
|
||||
|
||||
BlendFunci();
|
||||
|
||||
BlendFunci(unsigned int buf, GLenum source, GLenum destination):
|
||||
BlendFunc(source, destination),
|
||||
_index(buf) {}
|
||||
|
||||
BlendFunci(unsigned int buf, GLenum source, GLenum destination, GLenum source_alpha, GLenum destination_alpha):
|
||||
BlendFunc(source, destination, source_alpha, destination_alpha),
|
||||
_index(buf) {}
|
||||
|
||||
/** Copy constructor using CopyOp to manage deep vs shallow copy. */
|
||||
BlendFunci(const BlendFunci& cm,const CopyOp& copyop=CopyOp::SHALLOW_COPY):
|
||||
BlendFunc(cm,copyop),
|
||||
_index(cm._index) {}
|
||||
|
||||
META_StateAttribute(osg, BlendFunci, BLENDFUNC);
|
||||
|
||||
/** Return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs. */
|
||||
virtual int compare(const StateAttribute& sa) const
|
||||
{
|
||||
// Check for equal types, then create the rhs variable
|
||||
// used by the COMPARE_StateAttribute_Parameter macros below.
|
||||
COMPARE_StateAttribute_Types(BlendFunci,sa)
|
||||
|
||||
COMPARE_StateAttribute_Parameter(_index);
|
||||
|
||||
return BlendFunc::compare(sa);
|
||||
}
|
||||
|
||||
/** Return the buffer index as the member identifier.*/
|
||||
virtual unsigned int getMember() const { return _index; }
|
||||
|
||||
/** Set the renderbuffer index of the BlendFunci. */
|
||||
void setIndex(unsigned int buf) { _index = buf; }
|
||||
|
||||
/** Get the renderbuffer index of the BlendFunci. */
|
||||
unsigned int getIndex() const { return _index; }
|
||||
|
||||
virtual void apply(State& state) const;
|
||||
|
||||
protected:
|
||||
|
||||
virtual ~BlendFunci();
|
||||
|
||||
unsigned int _index;
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
81
include/osg/ColorMaski
Normal file
81
include/osg/ColorMaski
Normal file
@@ -0,0 +1,81 @@
|
||||
/* -*-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.
|
||||
*/
|
||||
|
||||
#ifndef OSG_COLORMASKI
|
||||
#define OSG_COLORMASKI 1
|
||||
|
||||
#include <osg/ColorMask>
|
||||
|
||||
namespace osg {
|
||||
|
||||
/** Encapsulates glColorMaski function : the index version of glColorMask for multiple render target.
|
||||
*/
|
||||
class OSG_EXPORT ColorMaski : public ColorMask
|
||||
{
|
||||
public :
|
||||
|
||||
ColorMaski();
|
||||
|
||||
ColorMaski(unsigned int buf, bool red, bool green, bool blue, bool alpha):
|
||||
ColorMask(red, green,blue,alpha),
|
||||
_index(buf) {}
|
||||
|
||||
/** Copy constructor using CopyOp to manage deep vs shallow copy. */
|
||||
ColorMaski(const ColorMaski& cm,const CopyOp& copyop=CopyOp::SHALLOW_COPY):
|
||||
ColorMask(cm,copyop),
|
||||
_index(cm._index) {}
|
||||
|
||||
META_StateAttribute(osg, ColorMaski, COLORMASK);
|
||||
|
||||
/** Return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs. */
|
||||
virtual int compare(const StateAttribute& sa) const
|
||||
{
|
||||
// Check for equal types, then create the rhs variable
|
||||
// used by the COMPARE_StateAttribute_Parameter macros below.
|
||||
COMPARE_StateAttribute_Types(ColorMaski,sa)
|
||||
|
||||
COMPARE_StateAttribute_Parameter(_index);
|
||||
|
||||
return ColorMask::compare(sa);
|
||||
}
|
||||
|
||||
/** Return the buffer index as the member identifier.*/
|
||||
virtual unsigned int getMember() const { return _index; }
|
||||
|
||||
/** Set the renderbuffer index of the ColorMaski. */
|
||||
void setIndex(unsigned int buf) { _index = buf; }
|
||||
|
||||
/** Get the renderbuffer index of the ColorMaski. */
|
||||
unsigned int getIndex() const { return _index; }
|
||||
|
||||
virtual void apply(State& state) const;
|
||||
|
||||
/** Encapsulates queries of extension availability, obtains extension function pointers. */
|
||||
struct OSG_EXPORT Extensions : public osg::Referenced
|
||||
{
|
||||
Extensions(unsigned int contextID);
|
||||
|
||||
void (GL_APIENTRY * glColorMaski)(GLuint buf, GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
|
||||
};
|
||||
|
||||
protected:
|
||||
|
||||
virtual ~ColorMaski();
|
||||
|
||||
unsigned int _index;
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user