|
|
@@ -12,7 +12,6 @@
|
|
|
///
|
|
|
#define BGFX_STATE_DEPTH_WRITE UINT64_C(0x0000000000000001)
|
|
|
|
|
|
-#define BGFX_STATE_ALPHA_TEST UINT64_C(0x0000000000000004)
|
|
|
#define BGFX_STATE_ALPHA_WRITE UINT64_C(0x0000000000000008)
|
|
|
#define BGFX_STATE_ALPHA_MASK UINT64_C(0x000000000000000c)
|
|
|
|
|
|
@@ -27,17 +26,6 @@
|
|
|
#define BGFX_STATE_DEPTH_TEST_SHIFT 4
|
|
|
#define BGFX_STATE_DEPTH_TEST_MASK UINT64_C(0x00000000000000f0)
|
|
|
|
|
|
-#define BGFX_STATE_ALPHA_TEST_LESS UINT64_C(0x0000000000000100)
|
|
|
-#define BGFX_STATE_ALPHA_TEST_LEQUAL UINT64_C(0x0000000000000200)
|
|
|
-#define BGFX_STATE_ALPHA_TEST_EQUAL UINT64_C(0x0000000000000300)
|
|
|
-#define BGFX_STATE_ALPHA_TEST_GEQUAL UINT64_C(0x0000000000000400)
|
|
|
-#define BGFX_STATE_ALPHA_TEST_GREATER UINT64_C(0x0000000000000500)
|
|
|
-#define BGFX_STATE_ALPHA_TEST_NOTEQUAL UINT64_C(0x0000000000000600)
|
|
|
-#define BGFX_STATE_ALPHA_TEST_NEVER UINT64_C(0x0000000000000700)
|
|
|
-#define BGFX_STATE_ALPHA_TEST_ALWAYS UINT64_C(0x0000000000000800)
|
|
|
-#define BGFX_STATE_ALPHA_TEST_SHIFT 8
|
|
|
-#define BGFX_STATE_ALPHA_TEST_MASK UINT64_C(0x0000000000000f00)
|
|
|
-
|
|
|
#define BGFX_STATE_BLEND_ZERO UINT64_C(0x0000000000001000)
|
|
|
#define BGFX_STATE_BLEND_ONE UINT64_C(0x0000000000002000)
|
|
|
#define BGFX_STATE_BLEND_SRC_COLOR UINT64_C(0x0000000000003000)
|
|
|
@@ -719,9 +707,7 @@ namespace bgfx
|
|
|
/// @param _state State flags. Default state for primitive type is
|
|
|
/// triangles. See: BGFX_STATE_DEFAULT.
|
|
|
///
|
|
|
- /// BGFX_STATE_ALPHA_TEST - Enable alpha test.
|
|
|
/// BGFX_STATE_ALPHA_WRITE - Enable alpha write.
|
|
|
- /// BGFX_STATE_ALPHA_TEST_* - Alpha test function.
|
|
|
/// BGFX_STATE_DEPTH_WRITE - Enable depth write.
|
|
|
/// BGFX_STATE_DEPTH_TEST_* - Depth test function.
|
|
|
/// BGFX_STATE_BLEND_* - See NOTE: BGFX_STATE_BLEND_FUNC.
|