diff options
author | HampusM <hampus@hampusmat.com> | 2024-05-24 23:30:00 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-05-24 23:30:13 +0200 |
commit | 05bd5ccbc5dd9bd8516162ac9a253e2d99be3ba9 (patch) | |
tree | 3515030229d6311b6f23cdf351495e4401e412f1 /engine/src/opengl | |
parent | 96c29ed9bef2221a57fa8ebe94a8c9a281f76b48 (diff) |
fix(engine): enable OpenGL multisampling on renderer init
Diffstat (limited to 'engine/src/opengl')
-rw-r--r-- | engine/src/opengl/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engine/src/opengl/mod.rs b/engine/src/opengl/mod.rs index 15f40cb..40f0c58 100644 --- a/engine/src/opengl/mod.rs +++ b/engine/src/opengl/mod.rs @@ -54,4 +54,5 @@ bitflags! { pub enum Capability { DepthTest = gl::DEPTH_TEST, + MultiSample = gl::MULTISAMPLE, } |