From cb26c1e90c61d30dd77c25e79572b2cb3b330a58 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Wed, 17 May 2023 20:29:35 -0700 Subject: [PATCH] core: make default window size 1/2 1920x1080 Signed-off-by: Stephen Gutekanst --- libs/core/src/Core.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/core/src/Core.zig b/libs/core/src/Core.zig index 943d50f1..1dcc4333 100644 --- a/libs/core/src/Core.zig +++ b/libs/core/src/Core.zig @@ -10,7 +10,7 @@ internal: platform.Core, pub const Options = struct { is_app: bool = false, title: [*:0]const u8 = "Mach Engine", - size: Size = .{ .width = 640, .height = 640 }, + size: Size = .{ .width = 1920 / 2, .height = 1080 / 2 }, power_preference: gpu.PowerPreference = .undefined, required_features: ?[]const gpu.FeatureName = null, required_limits: ?gpu.Limits = null,