]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/blend.h
Move all OpenGL-specific code to a separate directory
[libs/gl.git] / source / core / blend.h
index a1180050163b31dbd009acd1987d27c8507fb5b3..e04aef49c2474cc7be4c49382044518331a6c9a2 100644 (file)
@@ -77,9 +77,6 @@ struct Blend
 inline ColorWriteMask operator|(ColorWriteMask m1, ColorWriteMask m2)
 { return static_cast<ColorWriteMask>(static_cast<int>(m1)|static_cast<int>(m2)); }
 
-unsigned get_gl_blend_equation(BlendEquation);
-unsigned get_gl_blend_factor(BlendFactor);
-
 void operator>>(const LexicalConverter &, BlendEquation &);
 void operator<<(LexicalConverter &, BlendEquation);
 
@@ -92,4 +89,6 @@ void operator<<(LexicalConverter &, ColorWriteMask);
 } // namespace GL
 } // namespace Msp
 
+#include "blend_backend.h"
+
 #endif