Fixed rendering module in documentation

This commit is contained in:
Lorenzo Torres 2025-08-07 04:18:52 +02:00
parent 68b1367bdf
commit 3199697470
3 changed files with 5 additions and 5 deletions

View file

@ -25,7 +25,7 @@ pub fn build(b: *std.Build) void {
}); });
const rendering = b.createModule(.{ const rendering = b.createModule(.{
.root_source_file = b.path("src/rendering.zig"), .root_source_file = b.path("src/rendering/rendering.zig"),
.target = target, .target = target,
.optimize = optimize, .optimize = optimize,
.link_libc = true, .link_libc = true,

View file

@ -1,4 +0,0 @@
pub const Mesh = @import("rendering/Mesh.zig");
pub const vk = @import("rendering/vulkan.zig");
pub const Camera = @import("rendering/Camera.zig");
pub const Renderer = @import("rendering/Renderer.zig");

View file

@ -0,0 +1,4 @@
pub const Mesh = @import("Mesh.zig");
pub const vk = @import("vulkan.zig");
pub const Camera = @import("Camera.zig");
pub const Renderer = @import("Renderer.zig");