LibGL: Implement glColorMask

This commit is contained in:
Jesse Buhagiar 2021-08-13 22:03:39 +10:00 committed by Linus Groh
commit 8157e7740b
Notes: sideshowbarker 2024-07-18 05:39:04 +09:00
7 changed files with 41 additions and 3 deletions

View file

@ -28,6 +28,7 @@ struct RasterizerOptions {
bool enable_blending { false };
GLenum blend_source_factor { GL_ONE };
GLenum blend_destination_factor { GL_ONE };
u32 color_mask { 0xffffffff };
};
class SoftwareRasterizer final {