summaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-06-24 19:53:29 +0200
committerHampusM <hampus@hampusmat.com>2026-06-30 18:24:45 +0200
commit6f1186236aca39c49816bc3d52f28dd880cff6a9 (patch)
tree77608e83c6185403a052c39df9bccec77023d4d3 /engine
parent3531cf97cdbd188baf480ab614dc7feafee89dcf (diff)
chore(engine): change default multisampling to 4
Diffstat (limited to 'engine')
-rw-r--r--engine/src/rendering.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/src/rendering.rs b/engine/src/rendering.rs
index 1544a29..2ec0b38 100644
--- a/engine/src/rendering.rs
+++ b/engine/src/rendering.rs
@@ -175,7 +175,7 @@ impl Default for GraphicsPropertiesBuilder
fn default() -> Self
{
Self {
- multisampling_sample_cnt: Some(8),
+ multisampling_sample_cnt: Some(4),
debug: false,
depth_test: true,
}