]> git.tdb.fi Git - libs/gl.git/blob - source/core/blend.h
e04aef49c2474cc7be4c49382044518331a6c9a2
[libs/gl.git] / source / core / blend.h
1 #ifndef MSP_GL_BLEND_H_
2 #define MSP_GL_BLEND_H_
3
4 #include <msp/datafile/objectloader.h>
5 #include <msp/strings/lexicalcast.h>
6 #include "color.h"
7
8 namespace Msp {
9 namespace GL {
10
11 enum BlendEquation
12 {
13         ADD,
14         SUBTRACT,
15         REVERSE_SUBTRACT,
16         MIN,
17         MAX
18 };
19
20 enum BlendFactor
21 {
22         ZERO,
23         ONE,
24         SRC_COLOR,
25         ONE_MINUS_SRC_COLOR,
26         SRC_ALPHA,
27         ONE_MINUS_SRC_ALPHA,
28         DST_COLOR,
29         ONE_MINUS_DST_COLOR,
30         DST_ALPHA,
31         ONE_MINUS_DST_ALPHA,
32         CONSTANT_COLOR,
33         ONE_MINUS_CONSTANT_COLOR,
34         CONSTANT_ALPHA,
35         ONE_MINUS_CONSTANT_ALPHA
36 };
37
38 enum ColorWriteMask
39 {
40         WRITE_NONE = 0,
41         WRITE_RED = 1,
42         WRITE_GREEN = 2,
43         WRITE_BLUE = 4,
44         WRITE_ALPHA = 8,
45         WRITE_ALL = 15
46 };
47
48 /**
49 Blends incoming fragments with those already in the framebuffer.
50 */
51 struct Blend
52 {
53         class Loader: public DataFile::ObjectLoader<Blend>
54         {
55         public:
56                 Loader(Blend &);
57
58         private:
59                 void constant(float, float, float, float);
60                 void equation(BlendEquation);
61                 void factors(BlendFactor, BlendFactor);
62         };
63
64         bool enabled;
65         BlendEquation equation;
66         BlendFactor src_factor;
67         BlendFactor dst_factor;
68         Color constant;
69         ColorWriteMask write_mask;
70
71         Blend();
72         Blend(BlendFactor, BlendFactor);
73         Blend(BlendEquation, BlendFactor, BlendFactor);
74 };
75
76
77 inline ColorWriteMask operator|(ColorWriteMask m1, ColorWriteMask m2)
78 { return static_cast<ColorWriteMask>(static_cast<int>(m1)|static_cast<int>(m2)); }
79
80 void operator>>(const LexicalConverter &, BlendEquation &);
81 void operator<<(LexicalConverter &, BlendEquation);
82
83 void operator>>(const LexicalConverter &, BlendFactor &);
84 void operator<<(LexicalConverter &, BlendFactor);
85
86 void operator>>(const LexicalConverter &, ColorWriteMask &);
87 void operator<<(LexicalConverter &, ColorWriteMask);
88
89 } // namespace GL
90 } // namespace Msp
91
92 #include "blend_backend.h"
93
94 #endif