core: make default window size 1/2 1920x1080
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
ef7b079149
commit
cb26c1e90c
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ internal: platform.Core,
|
||||||
pub const Options = struct {
|
pub const Options = struct {
|
||||||
is_app: bool = false,
|
is_app: bool = false,
|
||||||
title: [*:0]const u8 = "Mach Engine",
|
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,
|
power_preference: gpu.PowerPreference = .undefined,
|
||||||
required_features: ?[]const gpu.FeatureName = null,
|
required_features: ?[]const gpu.FeatureName = null,
|
||||||
required_limits: ?gpu.Limits = null,
|
required_limits: ?gpu.Limits = null,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue