LibGL: Remove unused default from rasterizer scissor_box

Its value is always set in the constructor.
This commit is contained in:
Jelle Raaijmakers 2021-11-28 22:27:35 +01:00 committed by Andreas Kling
parent 0be2a76ee7
commit e967d31a98
Notes: sideshowbarker 2024-07-17 22:57:33 +09:00

View file

@ -46,7 +46,7 @@ struct RasterizerOptions {
GLfloat fog_start { 0.0f };
GLfloat fog_end { 1.0f };
bool scissor_enabled { false };
Gfx::IntRect scissor_box {};
Gfx::IntRect scissor_box;
GLenum draw_buffer { GL_BACK };
GLfloat depth_offset_factor { 0 };
GLfloat depth_offset_constant { 0 };