examples: add instanced-cube example (#246)
add example based on webgpu-samples' instancedCube sample. Signed-off-by: Stephen Gutekanst <stephen@hexops.com> Co-authored-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
8f7a20d2e6
commit
3b86aa08cc
6 changed files with 299 additions and 0 deletions
|
|
@ -32,6 +32,7 @@ pub fn build(b: *std.build.Builder) void {
|
||||||
.{ .name = "boids" },
|
.{ .name = "boids" },
|
||||||
.{ .name = "rotating-cube", .packages = &[_]Pkg{Packages.zmath} },
|
.{ .name = "rotating-cube", .packages = &[_]Pkg{Packages.zmath} },
|
||||||
.{ .name = "two-cubes", .packages = &[_]Pkg{Packages.zmath} },
|
.{ .name = "two-cubes", .packages = &[_]Pkg{Packages.zmath} },
|
||||||
|
.{ .name = "instanced-cube", .packages = &[_]Pkg{Packages.zmath} },
|
||||||
}) |example| {
|
}) |example| {
|
||||||
const example_exe = b.addExecutable("example-" ++ example.name, "examples/" ++ example.name ++ "/main.zig");
|
const example_exe = b.addExecutable("example-" ++ example.name, "examples/" ++ example.name ++ "/main.zig");
|
||||||
example_exe.setTarget(target);
|
example_exe.setTarget(target);
|
||||||
|
|
|
||||||
|
|
@ -3,3 +3,4 @@ The following examples have been ported from https://github.com/austinEng/webgpu
|
||||||
* ./boids/
|
* ./boids/
|
||||||
* ./rotating-cube/
|
* ./rotating-cube/
|
||||||
* ./two-cubes/
|
* ./two-cubes/
|
||||||
|
* ./instanced-cube
|
||||||
|
|
|
||||||
49
examples/instanced-cube/cube_mesh.zig
Normal file
49
examples/instanced-cube/cube_mesh.zig
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
pub const Vertex = struct {
|
||||||
|
pos: @Vector(4, f32),
|
||||||
|
col: @Vector(4, f32),
|
||||||
|
uv: @Vector(2, f32),
|
||||||
|
};
|
||||||
|
|
||||||
|
pub const vertices = [_]Vertex{
|
||||||
|
.{ .pos = .{ 1, -1, 1, 1 }, .col = .{ 1, 0, 1, 1 }, .uv = .{ 1, 1 } },
|
||||||
|
.{ .pos = .{ -1, -1, 1, 1 }, .col = .{ 0, 0, 1, 1 }, .uv = .{ 0, 1 } },
|
||||||
|
.{ .pos = .{ -1, -1, -1, 1 }, .col = .{ 0, 0, 0, 1 }, .uv = .{ 0, 0 } },
|
||||||
|
.{ .pos = .{ 1, -1, -1, 1 }, .col = .{ 1, 0, 0, 1 }, .uv = .{ 1, 0 } },
|
||||||
|
.{ .pos = .{ 1, -1, 1, 1 }, .col = .{ 1, 0, 1, 1 }, .uv = .{ 1, 1 } },
|
||||||
|
.{ .pos = .{ -1, -1, -1, 1 }, .col = .{ 0, 0, 0, 1 }, .uv = .{ 0, 0 } },
|
||||||
|
|
||||||
|
.{ .pos = .{ 1, 1, 1, 1 }, .col = .{ 1, 1, 1, 1 }, .uv = .{ 1, 1 } },
|
||||||
|
.{ .pos = .{ 1, -1, 1, 1 }, .col = .{ 1, 0, 1, 1 }, .uv = .{ 0, 1 } },
|
||||||
|
.{ .pos = .{ 1, -1, -1, 1 }, .col = .{ 1, 0, 0, 1 }, .uv = .{ 0, 0 } },
|
||||||
|
.{ .pos = .{ 1, 1, -1, 1 }, .col = .{ 1, 1, 0, 1 }, .uv = .{ 1, 0 } },
|
||||||
|
.{ .pos = .{ 1, 1, 1, 1 }, .col = .{ 1, 1, 1, 1 }, .uv = .{ 1, 1 } },
|
||||||
|
.{ .pos = .{ 1, -1, -1, 1 }, .col = .{ 1, 0, 0, 1 }, .uv = .{ 0, 0 } },
|
||||||
|
|
||||||
|
.{ .pos = .{ -1, 1, 1, 1 }, .col = .{ 0, 1, 1, 1 }, .uv = .{ 1, 1 } },
|
||||||
|
.{ .pos = .{ 1, 1, 1, 1 }, .col = .{ 1, 1, 1, 1 }, .uv = .{ 0, 1 } },
|
||||||
|
.{ .pos = .{ 1, 1, -1, 1 }, .col = .{ 1, 1, 0, 1 }, .uv = .{ 0, 0 } },
|
||||||
|
.{ .pos = .{ -1, 1, -1, 1 }, .col = .{ 0, 1, 0, 1 }, .uv = .{ 1, 0 } },
|
||||||
|
.{ .pos = .{ -1, 1, 1, 1 }, .col = .{ 0, 1, 1, 1 }, .uv = .{ 1, 1 } },
|
||||||
|
.{ .pos = .{ 1, 1, -1, 1 }, .col = .{ 1, 1, 0, 1 }, .uv = .{ 0, 0 } },
|
||||||
|
|
||||||
|
.{ .pos = .{ -1, -1, 1, 1 }, .col = .{ 0, 0, 1, 1 }, .uv = .{ 1, 1 } },
|
||||||
|
.{ .pos = .{ -1, 1, 1, 1 }, .col = .{ 0, 1, 1, 1 }, .uv = .{ 0, 1 } },
|
||||||
|
.{ .pos = .{ -1, 1, -1, 1 }, .col = .{ 0, 1, 0, 1 }, .uv = .{ 0, 0 } },
|
||||||
|
.{ .pos = .{ -1, -1, -1, 1 }, .col = .{ 0, 0, 0, 1 }, .uv = .{ 1, 0 } },
|
||||||
|
.{ .pos = .{ -1, -1, 1, 1 }, .col = .{ 0, 0, 1, 1 }, .uv = .{ 1, 1 } },
|
||||||
|
.{ .pos = .{ -1, 1, -1, 1 }, .col = .{ 0, 1, 0, 1 }, .uv = .{ 0, 0 } },
|
||||||
|
|
||||||
|
.{ .pos = .{ 1, 1, 1, 1 }, .col = .{ 1, 1, 1, 1 }, .uv = .{ 1, 1 } },
|
||||||
|
.{ .pos = .{ -1, 1, 1, 1 }, .col = .{ 0, 1, 1, 1 }, .uv = .{ 0, 1 } },
|
||||||
|
.{ .pos = .{ -1, -1, 1, 1 }, .col = .{ 0, 0, 1, 1 }, .uv = .{ 0, 0 } },
|
||||||
|
.{ .pos = .{ -1, -1, 1, 1 }, .col = .{ 0, 0, 1, 1 }, .uv = .{ 0, 0 } },
|
||||||
|
.{ .pos = .{ 1, -1, 1, 1 }, .col = .{ 1, 0, 1, 1 }, .uv = .{ 1, 0 } },
|
||||||
|
.{ .pos = .{ 1, 1, 1, 1 }, .col = .{ 1, 1, 1, 1 }, .uv = .{ 1, 1 } },
|
||||||
|
|
||||||
|
.{ .pos = .{ 1, -1, -1, 1 }, .col = .{ 1, 0, 0, 1 }, .uv = .{ 1, 1 } },
|
||||||
|
.{ .pos = .{ -1, -1, -1, 1 }, .col = .{ 0, 0, 0, 1 }, .uv = .{ 0, 1 } },
|
||||||
|
.{ .pos = .{ -1, 1, -1, 1 }, .col = .{ 0, 1, 0, 1 }, .uv = .{ 0, 0 } },
|
||||||
|
.{ .pos = .{ 1, 1, -1, 1 }, .col = .{ 1, 1, 0, 1 }, .uv = .{ 1, 0 } },
|
||||||
|
.{ .pos = .{ 1, -1, -1, 1 }, .col = .{ 1, 0, 0, 1 }, .uv = .{ 1, 1 } },
|
||||||
|
.{ .pos = .{ -1, 1, -1, 1 }, .col = .{ 0, 1, 0, 1 }, .uv = .{ 0, 0 } },
|
||||||
|
};
|
||||||
6
examples/instanced-cube/frag.wgsl
Executable file
6
examples/instanced-cube/frag.wgsl
Executable file
|
|
@ -0,0 +1,6 @@
|
||||||
|
@stage(fragment) fn main(
|
||||||
|
@location(0) fragUV: vec2<f32>,
|
||||||
|
@location(1) fragPosition: vec4<f32>
|
||||||
|
) -> @location(0) vec4<f32> {
|
||||||
|
return fragPosition;
|
||||||
|
}
|
||||||
224
examples/instanced-cube/main.zig
Executable file
224
examples/instanced-cube/main.zig
Executable file
|
|
@ -0,0 +1,224 @@
|
||||||
|
const std = @import("std");
|
||||||
|
const mach = @import("mach");
|
||||||
|
const gpu = @import("gpu");
|
||||||
|
const glfw = @import("glfw");
|
||||||
|
const zm = @import("zmath");
|
||||||
|
const Vertex = @import("cube_mesh.zig").Vertex;
|
||||||
|
const vertices = @import("cube_mesh.zig").vertices;
|
||||||
|
|
||||||
|
const App = mach.App(*FrameParams, .{});
|
||||||
|
|
||||||
|
const UniformBufferObject = struct {
|
||||||
|
mat: zm.Mat,
|
||||||
|
};
|
||||||
|
|
||||||
|
var timer: std.time.Timer = undefined;
|
||||||
|
|
||||||
|
pub fn main() !void {
|
||||||
|
timer = try std.time.Timer.start();
|
||||||
|
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
|
||||||
|
var allocator = gpa.allocator();
|
||||||
|
|
||||||
|
const ctx = try allocator.create(FrameParams);
|
||||||
|
var app = try App.init(allocator, ctx, .{});
|
||||||
|
|
||||||
|
app.window.setKeyCallback(struct {
|
||||||
|
fn callback(window: glfw.Window, key: glfw.Key, scancode: i32, action: glfw.Action, mods: glfw.Mods) void {
|
||||||
|
_ = scancode;
|
||||||
|
_ = mods;
|
||||||
|
if (action == .press) {
|
||||||
|
switch (key) {
|
||||||
|
.space => window.setShouldClose(true),
|
||||||
|
else => {},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}.callback);
|
||||||
|
try app.window.setSizeLimits(.{ .width = 20, .height = 20 }, .{ .width = null, .height = null });
|
||||||
|
|
||||||
|
const vs_module = app.device.createShaderModule(&.{
|
||||||
|
.label = "my vertex shader",
|
||||||
|
.code = .{ .wgsl = @embedFile("vert.wgsl") },
|
||||||
|
});
|
||||||
|
|
||||||
|
const vertex_attributes = [_]gpu.VertexAttribute{
|
||||||
|
.{ .format = .float32x4, .offset = @offsetOf(Vertex, "pos"), .shader_location = 0 },
|
||||||
|
.{ .format = .float32x2, .offset = @offsetOf(Vertex, "uv"), .shader_location = 1 },
|
||||||
|
};
|
||||||
|
const vertex_buffer_layout = gpu.VertexBufferLayout{
|
||||||
|
.array_stride = @sizeOf(Vertex),
|
||||||
|
.step_mode = .vertex,
|
||||||
|
.attribute_count = vertex_attributes.len,
|
||||||
|
.attributes = &vertex_attributes,
|
||||||
|
};
|
||||||
|
|
||||||
|
const fs_module = app.device.createShaderModule(&.{
|
||||||
|
.label = "my fragment shader",
|
||||||
|
.code = .{ .wgsl = @embedFile("frag.wgsl") },
|
||||||
|
});
|
||||||
|
|
||||||
|
const color_target = gpu.ColorTargetState{
|
||||||
|
.format = app.swap_chain_format,
|
||||||
|
.blend = null,
|
||||||
|
.write_mask = gpu.ColorWriteMask.all,
|
||||||
|
};
|
||||||
|
const fragment = gpu.FragmentState{
|
||||||
|
.module = fs_module,
|
||||||
|
.entry_point = "main",
|
||||||
|
.targets = &.{color_target},
|
||||||
|
.constants = null,
|
||||||
|
};
|
||||||
|
|
||||||
|
const bgle = gpu.BindGroupLayout.Entry.buffer(0, .{ .vertex = true }, .uniform, true, 0);
|
||||||
|
const bgl = app.device.createBindGroupLayout(
|
||||||
|
&gpu.BindGroupLayout.Descriptor{
|
||||||
|
.entries = &.{bgle},
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
const bind_group_layouts = [_]gpu.BindGroupLayout{bgl};
|
||||||
|
const pipeline_layout = app.device.createPipelineLayout(&.{
|
||||||
|
.bind_group_layouts = &bind_group_layouts,
|
||||||
|
});
|
||||||
|
|
||||||
|
const pipeline_descriptor = gpu.RenderPipeline.Descriptor{
|
||||||
|
.fragment = &fragment,
|
||||||
|
.layout = pipeline_layout,
|
||||||
|
.depth_stencil = null,
|
||||||
|
.vertex = .{
|
||||||
|
.module = vs_module,
|
||||||
|
.entry_point = "main",
|
||||||
|
.buffers = &.{vertex_buffer_layout},
|
||||||
|
},
|
||||||
|
.multisample = .{
|
||||||
|
.count = 1,
|
||||||
|
.mask = 0xFFFFFFFF,
|
||||||
|
.alpha_to_coverage_enabled = false,
|
||||||
|
},
|
||||||
|
.primitive = .{
|
||||||
|
.front_face = .ccw,
|
||||||
|
.cull_mode = .back,
|
||||||
|
.topology = .triangle_list,
|
||||||
|
.strip_index_format = .none,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const vertex_buffer = app.device.createBuffer(&.{
|
||||||
|
.usage = .{ .vertex = true },
|
||||||
|
.size = @sizeOf(Vertex) * vertices.len,
|
||||||
|
.mapped_at_creation = true,
|
||||||
|
});
|
||||||
|
var vertex_mapped = vertex_buffer.getMappedRange(Vertex, 0, vertices.len);
|
||||||
|
std.mem.copy(Vertex, vertex_mapped, vertices[0..]);
|
||||||
|
vertex_buffer.unmap();
|
||||||
|
defer vertex_buffer.release();
|
||||||
|
|
||||||
|
const x_count = 4;
|
||||||
|
const y_count = 4;
|
||||||
|
const num_instances = x_count * y_count;
|
||||||
|
|
||||||
|
const uniform_buffer = app.device.createBuffer(&.{
|
||||||
|
.usage = .{ .copy_dst = true, .uniform = true },
|
||||||
|
.size = @sizeOf(UniformBufferObject) * num_instances,
|
||||||
|
.mapped_at_creation = false,
|
||||||
|
});
|
||||||
|
defer uniform_buffer.release();
|
||||||
|
const bind_group = app.device.createBindGroup(
|
||||||
|
&gpu.BindGroup.Descriptor{
|
||||||
|
.layout = bgl,
|
||||||
|
.entries = &.{
|
||||||
|
gpu.BindGroup.Entry.buffer(0, uniform_buffer, 0, @sizeOf(UniformBufferObject) * num_instances),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
);
|
||||||
|
defer bind_group.release();
|
||||||
|
|
||||||
|
ctx.* = FrameParams{
|
||||||
|
.pipeline = app.device.createRenderPipeline(&pipeline_descriptor),
|
||||||
|
.queue = app.device.getQueue(),
|
||||||
|
.vertex_buffer = vertex_buffer,
|
||||||
|
.uniform_buffer = uniform_buffer,
|
||||||
|
.bind_group = bind_group,
|
||||||
|
};
|
||||||
|
|
||||||
|
vs_module.release();
|
||||||
|
fs_module.release();
|
||||||
|
pipeline_layout.release();
|
||||||
|
bgl.release();
|
||||||
|
|
||||||
|
try app.run(.{ .frame = frame });
|
||||||
|
}
|
||||||
|
|
||||||
|
const FrameParams = struct {
|
||||||
|
pipeline: gpu.RenderPipeline,
|
||||||
|
queue: gpu.Queue,
|
||||||
|
vertex_buffer: gpu.Buffer,
|
||||||
|
uniform_buffer: gpu.Buffer,
|
||||||
|
bind_group: gpu.BindGroup,
|
||||||
|
};
|
||||||
|
|
||||||
|
var i: u32 = 0;
|
||||||
|
|
||||||
|
fn frame(app: *App, params: *FrameParams) !void {
|
||||||
|
i += 1;
|
||||||
|
|
||||||
|
const back_buffer_view = app.swap_chain.?.getCurrentTextureView();
|
||||||
|
const color_attachment = gpu.RenderPassColorAttachment{
|
||||||
|
.view = back_buffer_view,
|
||||||
|
.resolve_target = null,
|
||||||
|
.clear_value = std.mem.zeroes(gpu.Color),
|
||||||
|
.load_op = .clear,
|
||||||
|
.store_op = .store,
|
||||||
|
};
|
||||||
|
|
||||||
|
const encoder = app.device.createCommandEncoder(null);
|
||||||
|
const render_pass_info = gpu.RenderPassEncoder.Descriptor{
|
||||||
|
.color_attachments = &.{color_attachment},
|
||||||
|
};
|
||||||
|
|
||||||
|
{
|
||||||
|
const proj = zm.perspectiveFovRh(
|
||||||
|
(std.math.pi / 3.0),
|
||||||
|
@intToFloat(f32, app.current_desc.width) / @intToFloat(f32, app.current_desc.height),
|
||||||
|
10,
|
||||||
|
30,
|
||||||
|
);
|
||||||
|
|
||||||
|
var ubos: [16]UniformBufferObject = undefined;
|
||||||
|
const time = @intToFloat(f32, timer.read()) / @as(f32, std.time.ns_per_s);
|
||||||
|
const step: f32 = 4.0;
|
||||||
|
var m: u8 = 0;
|
||||||
|
var x: u8 = 0;
|
||||||
|
while (x < 4) : (x += 1) {
|
||||||
|
var y: u8 = 0;
|
||||||
|
while (y < 4) : (y += 1) {
|
||||||
|
const trans = zm.translation(step * (@intToFloat(f32, x) - 2.0 + 0.5), step * (@intToFloat(f32, y) - 2.0 + 0.5), -20);
|
||||||
|
const localTime = time + @intToFloat(f32, m) * 0.5;
|
||||||
|
const model = zm.mul(zm.mul(zm.mul(zm.rotationX(localTime * (std.math.pi / 2.1)), zm.rotationY(localTime * (std.math.pi / 0.9))), zm.rotationZ(localTime * (std.math.pi / 1.3))), trans);
|
||||||
|
const mvp = zm.mul(model, proj);
|
||||||
|
const ubo = UniformBufferObject{
|
||||||
|
.mat = mvp,
|
||||||
|
};
|
||||||
|
ubos[m] = ubo;
|
||||||
|
m += 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
encoder.writeBuffer(params.uniform_buffer, 0, UniformBufferObject, &ubos);
|
||||||
|
}
|
||||||
|
|
||||||
|
const pass = encoder.beginRenderPass(&render_pass_info);
|
||||||
|
pass.setPipeline(params.pipeline);
|
||||||
|
pass.setVertexBuffer(0, params.vertex_buffer, 0, @sizeOf(Vertex) * vertices.len);
|
||||||
|
pass.setBindGroup(0, params.bind_group, &.{0});
|
||||||
|
pass.draw(vertices.len, 16, 0, 0);
|
||||||
|
pass.end();
|
||||||
|
pass.release();
|
||||||
|
|
||||||
|
var command = encoder.finish(null);
|
||||||
|
encoder.release();
|
||||||
|
|
||||||
|
params.queue.submit(&.{command});
|
||||||
|
command.release();
|
||||||
|
app.swap_chain.?.present();
|
||||||
|
back_buffer_view.release();
|
||||||
|
}
|
||||||
18
examples/instanced-cube/vert.wgsl
Normal file
18
examples/instanced-cube/vert.wgsl
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
@binding(0) @group(0) var<uniform> ubos : array<mat4x4<f32>, 16>;
|
||||||
|
|
||||||
|
struct VertexOutput {
|
||||||
|
@builtin(position) position_clip : vec4<f32>;
|
||||||
|
@location(0) fragUV : vec2<f32>;
|
||||||
|
@location(1) fragPosition: vec4<f32>;
|
||||||
|
};
|
||||||
|
|
||||||
|
@stage(vertex)
|
||||||
|
fn main(@builtin(instance_index) instanceIdx : u32,
|
||||||
|
@location(0) position : vec4<f32>,
|
||||||
|
@location(1) uv : vec2<f32>) -> VertexOutput {
|
||||||
|
var output : VertexOutput;
|
||||||
|
output.position_clip = ubos[instanceIdx] * position;
|
||||||
|
output.fragUV = uv;
|
||||||
|
output.fragPosition = 0.5 * (position + vec4<f32>(1.0, 1.0, 1.0, 1.0));
|
||||||
|
return output;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue