fix: restore import for glfw w/ opengl3 backend
rebase unalived that specific line. Whoops
This commit is contained in:
parent
2894f69c2f
commit
334c021350
|
@ -10,7 +10,7 @@ pub usingnamespace @import("gui.zig");
|
||||||
pub const plot = @import("plot.zig");
|
pub const plot = @import("plot.zig");
|
||||||
pub const backend = switch (@import("zgui_options").backend) {
|
pub const backend = switch (@import("zgui_options").backend) {
|
||||||
.glfw_wgpu => @import("backend_glfw_wgpu.zig"),
|
.glfw_wgpu => @import("backend_glfw_wgpu.zig"),
|
||||||
.glfw_opengl3 => {}, // See glfw-opengl3-backend branch
|
.glfw_opengl3 => @import("backend_glfw_opengl3.zig"),
|
||||||
.sdl2_opengl3 => @import("backend_sdl2_opengl3.zig"),
|
.sdl2_opengl3 => @import("backend_sdl2_opengl3.zig"),
|
||||||
.win32_dx12 => .{}, // TODO:
|
.win32_dx12 => .{}, // TODO:
|
||||||
.no_backend => .{},
|
.no_backend => .{},
|
||||||
|
|
Loading…
Reference in New Issue