X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fblend.h;h=e7b291e617dab5c2044e787c99ee7a09a7dfcac5;hp=dd3f9404d72a2831c3442a994a64b90bbaff6812;hb=HEAD;hpb=f14435e58bfa0fa697a06ba9a454bb30cd37d9d8 diff --git a/source/blend.h b/source/blend.h deleted file mode 100644 index dd3f9404..00000000 --- a/source/blend.h +++ /dev/null @@ -1,62 +0,0 @@ -#ifndef MSP_GL_BLEND_H_ -#define MSP_GL_BLEND_H_ - -#include "bindable.h" -#include "gl.h" - -namespace Msp { -namespace GL { - -enum BlendEquation -{ - ADD = GL_FUNC_ADD, - SUBTRACT = GL_FUNC_SUBTRACT, - REVERSE_SUBTRACT = GL_FUNC_REVERSE_SUBTRACT, - MIN = GL_MIN, - MAX = GL_MAX -}; - -enum BlendFactor -{ - ZERO = GL_ZERO, - ONE = GL_ONE, - SRC_COLOR = GL_SRC_COLOR, - ONE_MINUS_SRC_COLOR = GL_ONE_MINUS_SRC_COLOR, - SRC_ALPHA = GL_SRC_ALPHA, - ONE_MINUS_SRC_ALPHA = GL_ONE_MINUS_SRC_ALPHA, - DST_COLOR = GL_DST_COLOR, - ONE_MINUS_DST_COLOR = GL_ONE_MINUS_DST_COLOR, - DST_ALPHA = GL_DST_ALPHA, - ONE_MINUS_DST_ALPHA = GL_ONE_MINUS_DST_ALPHA, - CONSTANT_COLOR = GL_CONSTANT_COLOR, - ONE_MINUS_CONSTANT_COLOR = GL_ONE_MINUS_CONSTANT_COLOR, - CONSTANT_ALPHA = GL_CONSTANT_ALPHA, - ONE_MINUS_CONSTANT_ALPHA = GL_ONE_MINUS_CONSTANT_ALPHA -}; - -/** -Blends incoming fragments with those already in the framebuffer. -*/ -class Blend: public Bindable -{ -private: - BlendEquation eq; - BlendFactor src_factor; - BlendFactor dst_factor; - -public: - Blend(); - Blend(BlendFactor, BlendFactor); - Blend(BlendEquation, BlendFactor, BlendFactor); - - void bind() const; - - static void unbind(); - - static const Blend &alpha(); -}; - -} // namespace GL -} // namespace Msp - -#endif