Open Inventor
Release 2025.1.0
Loading...
Searching...
No Matches
SoBlendElement.h
1
/*=======================================================================
2
*** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
3
*** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
4
*** ***
5
*** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
6
*** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
7
*** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
8
*** ***
9
*** RESTRICTED RIGHTS LEGEND ***
10
*** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
11
*** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
12
*** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
13
*** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
14
*** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
15
*** ***
16
*** COPYRIGHT (C) 1996-2014 BY FEI S.A.S, ***
17
*** BORDEAUX, FRANCE ***
18
*** ALL RIGHTS RESERVED ***
19
**=======================================================================*/
20
21
#ifndef _SO_BLEND_ELEMENT_H
22
#define _SO_BLEND_ELEMENT_H
23
24
#include <Inventor/SbColorRGBA.h>
25
#include <Inventor/elements/SoElement.h>
26
#include <Inventor/elements/SoSubElement.h>
27
#include <Inventor/SbEnums.h>
28
38
class
SoBlendElement :
public
SoElement
39
{
40
SO_ELEMENT_HEADER( SoBlendElement );
41
42
public
:
46
enum
BlendFactor
47
{
48
ZERO
= SbEnums::BLEND_ZERO,
49
ONE
= SbEnums::BLEND_ONE,
50
SRC_COLOR
= SbEnums::BLEND_SRC_COLOR,
51
ONE_MINUS_SRC_COLOR
= SbEnums::BLEND_ONE_MINUS_SRC_COLOR,
52
DST_COLOR
= SbEnums::BLEND_DST_COLOR,
53
ONE_MINUS_DST_COLOR
= SbEnums::BLEND_ONE_MINUS_DST_COLOR,
54
SRC_ALPHA
= SbEnums::BLEND_SRC_ALPHA,
55
ONE_MINUS_SRC_ALPHA
= SbEnums::BLEND_ONE_MINUS_SRC_ALPHA,
56
DST_ALPHA
= SbEnums::BLEND_DST_ALPHA,
57
ONE_MINUS_DST_ALPHA
= SbEnums::BLEND_ONE_MINUS_DST_ALPHA,
58
CONSTANT_COLOR
= SbEnums::BLEND_CONSTANT_COLOR,
59
ONE_MINUS_CONSTANT_COLOR
= SbEnums::BLEND_ONE_MINUS_CONSTANT_COLOR,
60
CONSTANT_ALPHA
= SbEnums::BLEND_CONSTANT_ALPHA,
61
ONE_MINUS_CONSTANT_ALPHA
= SbEnums::BLEND_ONE_MINUS_CONSTANT_ALPHA,
62
SRC_ALPHA_SATURATE
= SbEnums::BLEND_SRC_ALPHA_SATURATE,
63
SRC1_COLOR
= SbEnums::BLEND_SRC1_COLOR,
64
ONE_MINUS_SRC1_COLOR
= SbEnums::BLEND_ONE_MINUS_SRC1_COLOR,
65
SRC1_ALPHA
= SbEnums::BLEND_SRC1_ALPHA,
66
ONE_MINUS_SRC1_ALPHA
= SbEnums::BLEND_ONE_MINUS_SRC1_ALPHA
67
};
68
72
enum
BlendEquation
73
{
74
FUNC_ADD
= SbEnums::BLEND_FUNC_ADD,
75
FUNC_SUBTRACT
= SbEnums::BLEND_FUNC_SUBTRACT,
76
FUNC_REVERSE_SUBTRACT
= SbEnums::BLEND_FUNC_REVERSE_SUBTRACT,
77
MIN
= SbEnums::BLEND_FUNC_MIN,
78
MAX
= SbEnums::BLEND_FUNC_MAX
79
};
80
87
struct
BlendElementParameters
{
88
BlendElementParameters
()
89
:
enabled
(false)
90
,
sourceRGBFactor
( SoBlendElement::
ONE
)
91
,
destinationRGBFactor
( SoBlendElement::
ZERO
)
92
,
sourceAlphaFactor
( SoBlendElement::
ONE
)
93
,
destinationAlphaFactor
( SoBlendElement::
ZERO
)
94
,
equation
( SoBlendElement::
FUNC_ADD
)
95
,
color
(
SbColorRGBA
( 0, 0, 0, 0 ) )
96
{
97
}
98
99
bool
operator ==
(
const
BlendElementParameters
& other)
const
;
100
bool
operator !=
(
const
BlendElementParameters
& other)
const
;
101
102
bool
enabled
;
103
BlendFactor
sourceRGBFactor
;
104
BlendFactor
destinationRGBFactor
;
105
BlendFactor
sourceAlphaFactor
;
106
BlendFactor
destinationAlphaFactor
;
107
BlendEquation
equation
;
108
SbColorRGBA
color
;
109
};
110
114
static
void
set
(
SoState
* state,
const
BlendElementParameters
& parameters );
115
119
static
void
setBlending
(
SoState
* state,
bool
enabled );
120
125
static
void
setFunction
(
SoState
* state,
const
BlendFactor
source,
const
BlendFactor
destination );
126
130
static
void
get
(
SoState
* state,
BlendElementParameters
& parameter );
131
135
virtual
void
print
( FILE* fp )
const
;
136
140
virtual
void
push
(
SoState
* state );
141
145
virtual
void
pop
(
SoState
* state,
const
SoElement* prevTopElement );
146
147
private
:
148
virtual
~SoBlendElement();
149
151
virtual
void
init(
SoState
* state );
152
156
virtual
void
setElt(
const
BlendElementParameters
& parameter );
157
161
virtual
SbBool
matches(
const
SoElement* element )
const
;
162
166
virtual
SoElement* copyMatchInfo()
const
;
167
168
private
:
169
171
static
void
initClass();
172
174
static
void
exitClass();
175
176
private
:
178
BlendElementParameters
m_parameters;
179
};
180
181
#endif
// _SO_BLEND_ELEMENT_H
SbColorRGBA
ColorRGBA vector class.
Definition
SbColorRGBA.h:61
SoBlendElement::BlendEquation
BlendEquation
Blend Equation as defined by OpenGL's glBlendEquation.
Definition
SoBlendElement.h:73
SoBlendElement::MAX
@ MAX
Definition
SoBlendElement.h:78
SoBlendElement::FUNC_SUBTRACT
@ FUNC_SUBTRACT
Definition
SoBlendElement.h:75
SoBlendElement::FUNC_REVERSE_SUBTRACT
@ FUNC_REVERSE_SUBTRACT
Definition
SoBlendElement.h:76
SoBlendElement::FUNC_ADD
@ FUNC_ADD
Definition
SoBlendElement.h:74
SoBlendElement::MIN
@ MIN
Definition
SoBlendElement.h:77
SoBlendElement::setBlending
static void setBlending(SoState *state, bool enabled)
Enable or disable blending.
SoBlendElement::setFunction
static void setFunction(SoState *state, const BlendFactor source, const BlendFactor destination)
Sets the blending function.
SoBlendElement::print
virtual void print(FILE *fp) const
Prints element (for debugging).
SoBlendElement::push
virtual void push(SoState *state)
Override push() method to keep GL up to date.
SoBlendElement::BlendFactor
BlendFactor
BlendFactor as defined by OpenGL's glBlendFunc.
Definition
SoBlendElement.h:47
SoBlendElement::ONE_MINUS_SRC_ALPHA
@ ONE_MINUS_SRC_ALPHA
Definition
SoBlendElement.h:55
SoBlendElement::ONE_MINUS_SRC_COLOR
@ ONE_MINUS_SRC_COLOR
Definition
SoBlendElement.h:51
SoBlendElement::ONE_MINUS_SRC1_ALPHA
@ ONE_MINUS_SRC1_ALPHA
Definition
SoBlendElement.h:66
SoBlendElement::SRC1_COLOR
@ SRC1_COLOR
Definition
SoBlendElement.h:63
SoBlendElement::SRC_ALPHA_SATURATE
@ SRC_ALPHA_SATURATE
Definition
SoBlendElement.h:62
SoBlendElement::ZERO
@ ZERO
Definition
SoBlendElement.h:48
SoBlendElement::ONE_MINUS_DST_ALPHA
@ ONE_MINUS_DST_ALPHA
Definition
SoBlendElement.h:57
SoBlendElement::ONE_MINUS_CONSTANT_ALPHA
@ ONE_MINUS_CONSTANT_ALPHA
Definition
SoBlendElement.h:61
SoBlendElement::DST_COLOR
@ DST_COLOR
Definition
SoBlendElement.h:52
SoBlendElement::ONE_MINUS_SRC1_COLOR
@ ONE_MINUS_SRC1_COLOR
Definition
SoBlendElement.h:64
SoBlendElement::SRC1_ALPHA
@ SRC1_ALPHA
Definition
SoBlendElement.h:65
SoBlendElement::ONE_MINUS_DST_COLOR
@ ONE_MINUS_DST_COLOR
Definition
SoBlendElement.h:53
SoBlendElement::SRC_COLOR
@ SRC_COLOR
Definition
SoBlendElement.h:50
SoBlendElement::DST_ALPHA
@ DST_ALPHA
Definition
SoBlendElement.h:56
SoBlendElement::ONE
@ ONE
Definition
SoBlendElement.h:49
SoBlendElement::CONSTANT_COLOR
@ CONSTANT_COLOR
Definition
SoBlendElement.h:58
SoBlendElement::SRC_ALPHA
@ SRC_ALPHA
Definition
SoBlendElement.h:54
SoBlendElement::ONE_MINUS_CONSTANT_COLOR
@ ONE_MINUS_CONSTANT_COLOR
Definition
SoBlendElement.h:59
SoBlendElement::CONSTANT_ALPHA
@ CONSTANT_ALPHA
Definition
SoBlendElement.h:60
SoBlendElement::set
static void set(SoState *state, const BlendElementParameters ¶meters)
Sets the blending parameters.
SoBlendElement::pop
virtual void pop(SoState *state, const SoElement *prevTopElement)
Override pop() method to keep GL up to date.
SoBlendElement::get
static void get(SoState *state, BlendElementParameters ¶meter)
Retrieves the current blending parameters.
SoElement::SoState
friend class SoState
Definition
SoElement.h:406
SbBool
int SbBool
Boolean type.
Definition
SbBase.h:87
SoBlendElement::BlendElementParameters
BlendElementParameters packages all the different blending parameters.
Definition
SoBlendElement.h:87
SoBlendElement::BlendElementParameters::destinationAlphaFactor
BlendFactor destinationAlphaFactor
Definition
SoBlendElement.h:106
SoBlendElement::BlendElementParameters::BlendElementParameters
BlendElementParameters()
Definition
SoBlendElement.h:88
SoBlendElement::BlendElementParameters::sourceRGBFactor
BlendFactor sourceRGBFactor
Definition
SoBlendElement.h:103
SoBlendElement::BlendElementParameters::color
SbColorRGBA color
Definition
SoBlendElement.h:108
SoBlendElement::BlendElementParameters::operator!=
bool operator!=(const BlendElementParameters &other) const
SoBlendElement::BlendElementParameters::equation
BlendEquation equation
Definition
SoBlendElement.h:107
SoBlendElement::BlendElementParameters::destinationRGBFactor
BlendFactor destinationRGBFactor
Definition
SoBlendElement.h:104
SoBlendElement::BlendElementParameters::operator==
bool operator==(const BlendElementParameters &other) const
SoBlendElement::BlendElementParameters::enabled
bool enabled
Definition
SoBlendElement.h:102
SoBlendElement::BlendElementParameters::sourceAlphaFactor
BlendFactor sourceAlphaFactor
Definition
SoBlendElement.h:105
Inventor
elements
SoBlendElement.h
Generated by
1.13.2