Axmol Engine 2.4.0-258ceca
|
Blend Function used for textures. More...
#include <Types.h>
Public Attributes | |
backend::BlendFactor | src |
source blend function | |
backend::BlendFactor | dst |
destination blend function | |
Static Public Attributes | |
static const BlendFunc | DISABLE |
Blending disabled. | |
static const BlendFunc | ALPHA_PREMULTIPLIED |
Blending enabled for textures with Alpha premultiplied. | |
static const BlendFunc | ALPHA_NON_PREMULTIPLIED |
Blending enabled for textures with Alpha NON premultiplied. | |
static const BlendFunc | ADDITIVE |
Enables Additive blending. | |
Blend Function used for textures.
|
static |
Blending disabled.
Uses {BlendFactor::ONE, BlendFactor::ZERO}
|
static |
Blending enabled for textures with Alpha premultiplied.
Uses {BlendFactor::ONE, BlendFactor::ONE_MINUS_SRC_ALPHA}
|
static |
Blending enabled for textures with Alpha NON premultiplied.
Uses {BlendFactor::SRC_ALPHA, BlendFactor::ONE_MINUS_SRC_ALPHA}
|
static |
Enables Additive blending.
Uses {BlendFactor::SRC_ALPHA, BlendFactor::ONE}