Fixed rendering module in documentation
This commit is contained in:
parent
68b1367bdf
commit
3199697470
3 changed files with 5 additions and 5 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -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");
|
|
||||||
4
src/rendering/rendering.zig
Normal file
4
src/rendering/rendering.zig
Normal 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");
|
||||||
Loading…
Add table
Add a link
Reference in a new issue