File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 55Below is the change log for typical users. Minor and older changes stripped
66away, please see git history for details.
77
8+ - v0.7.1 (2026-xx-xx) (graphics) expose color write mask for stencil buffer
89- v0.7.0 (2026-01-02) (dds) version 1.0
910 (dxt) version 1.0
1011 (resource) version 1.0
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ the API is complete. It just means we won't break what currently exists.
6060* Draw Backend v1.1.0 (pl_draw_backend_ext.h)
6161* DXT v1.0.0 (pl_dxt_ext.h)
6262* GPU Allocators v1.0.0 (pl_gpu_allocators_ext.h)
63- * Graphics v1.5.2 (pl_graphics_ext.h)
63+ * Graphics v1.7.0 (pl_graphics_ext.h)
6464* Image v1.0.0 (pl_image_ext.h)
6565* Job v2.2.0 (pl_job_ext.h)
6666* Atomics v1.0.0 (pl_platform_ext.h)
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ Index of this file:
114114// [SECTION] apis
115115// -----------------------------------------------------------------------------
116116
117- #define plGraphicsI_version {1 , 6 , 0 }
117+ #define plGraphicsI_version {1 , 7 , 0 }
118118
119119// -----------------------------------------------------------------------------
120120// [SECTION] includes
@@ -1782,12 +1782,12 @@ enum _plFormat
17821782
17831783enum _plColorWriteMask
17841784{
1785+ PL_COLOR_WRITE_MASK_NONE = 0 ,
17851786 PL_COLOR_WRITE_MASK_R = 1 << 0 ,
17861787 PL_COLOR_WRITE_MASK_G = 1 << 1 ,
17871788 PL_COLOR_WRITE_MASK_B = 1 << 2 ,
17881789 PL_COLOR_WRITE_MASK_A = 1 << 3 ,
1789- PL_COLOR_WRITE_MASK_ALL = 0xF ,
1790- PL_COLOR_WRITE_MASK_NONE = 0
1790+ PL_COLOR_WRITE_MASK_ALL = PL_COLOR_WRITE_MASK_R | PL_COLOR_WRITE_MASK_G | PL_COLOR_WRITE_MASK_B | PL_COLOR_WRITE_MASK_A
17911791};
17921792
17931793enum _plBlendMode
You can’t perform that action at this time.
0 commit comments