fix: restore import for glfw w/ opengl3 backend

rebase unalived that specific line. Whoops
This commit is contained in:
Rekai Nyangadzayi Musuka 2023-03-26 23:02:49 -05:00
parent 1c6205769f
commit 5b2b64a9de
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ pub usingnamespace @import("gui.zig");
pub const plot = @import("plot.zig");
pub const backend = switch (@import("zgui_options").backend) {
.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"),
.win32_dx12 => .{}, // TODO:
.no_backend => .{},