LibGL: Implement glDrawBuffer

This commit is contained in:
Stephan Unverwerth 2021-08-31 20:23:29 +02:00 committed by Ali Mohammad Pur
commit 7cbaaf8366
Notes: sideshowbarker 2024-07-18 04:54:15 +09:00
7 changed files with 52 additions and 1 deletions

View file

@ -44,6 +44,7 @@ struct RasterizerOptions {
GLboolean fog_enabled { false };
GLfloat fog_start { 0.0f };
GLfloat fog_end { 1.0f };
GLenum draw_buffer { GL_BACK };
};
class SoftwareRasterizer final {