diff options
author | Jelle Raaijmakers <jelle@gmta.nl> | 2021-11-28 22:27:35 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-12-11 23:15:24 +0100 |
commit | e967d31a98d7fc7dd53a6b04b316db7b831b9862 (patch) | |
tree | e1f52607875448c9523773305e074724b9988ede /Userland/Libraries/LibGL | |
parent | 0be2a76ee71a10bf056fabe5152b21ff18fed14f (diff) | |
download | serenity-e967d31a98d7fc7dd53a6b04b316db7b831b9862.zip |
LibGL: Remove unused default from rasterizer scissor_box
Its value is always set in the constructor.
Diffstat (limited to 'Userland/Libraries/LibGL')
-rw-r--r-- | Userland/Libraries/LibGL/SoftwareRasterizer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGL/SoftwareRasterizer.h b/Userland/Libraries/LibGL/SoftwareRasterizer.h index 6a54e8e35b..479d0d1450 100644 --- a/Userland/Libraries/LibGL/SoftwareRasterizer.h +++ b/Userland/Libraries/LibGL/SoftwareRasterizer.h @@ -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 }; |