Skip to content

Commit

Permalink
Fix argument to glslang
Browse files Browse the repository at this point in the history
  • Loading branch information
siniarskimar committed Oct 13, 2024
1 parent 0a2007d commit 7642676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub fn build(b: *std.Build) void {

const shaders = vulkan_zig.ShaderCompileStep.create(
b,
&.{ "glslang", "--target-env=vulkan1.0" },
&.{ "glslang", "--target-env", "vulkan1.0" },
"-o",
);
shaders.add("triangle_vert", "src/shader/triangle.vert", .{});
Expand Down

0 comments on commit 7642676

Please sign in to comment.