32 lines
1.2 KiB
Zig
32 lines
1.2 KiB
Zig
.{
|
|
.id = "dev.native_sdk.effects_probe",
|
|
.name = "effects-probe",
|
|
.display_name = "Effects Probe",
|
|
.version = "0.1.0",
|
|
.platforms = .{"macos"},
|
|
.capabilities = .{ "native_views", "gpu_surfaces" },
|
|
.shell = .{
|
|
.windows = .{
|
|
.{
|
|
.label = "main",
|
|
.title = "Native SDK Effects Probe",
|
|
.width = 560,
|
|
.height = 480,
|
|
.restore_state = false,
|
|
.restore_policy = "center_on_primary",
|
|
.views = .{
|
|
.{ .label = "probe-canvas", .kind = "gpu_surface", .fill = true, .role = "Effects probe canvas", .accessibility_label = "Effects probe", .gpu_backend = "metal", .gpu_pixel_format = "bgra8_unorm", .gpu_present_mode = "timer", .gpu_alpha_mode = "opaque", .gpu_color_space = "srgb", .gpu_vsync = true },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
.security = .{
|
|
.navigation = .{
|
|
.allowed_origins = .{ "zero://app", "zero://inline" },
|
|
.external_links = .{ .action = "deny" },
|
|
},
|
|
},
|
|
.web_engine = "system",
|
|
.cef = .{ .dir = "third_party/cef/macos", .auto_install = false },
|
|
}
|