diff --git a/render/wgpu/shaders/buffer_bug_detection.wgsl b/render/wgpu/shaders/buffer_bug_detection.wgsl deleted file mode 100644 index 16a169883..000000000 --- a/render/wgpu/shaders/buffer_bug_detection.wgsl +++ /dev/null @@ -1,18 +0,0 @@ -@group(0) @binding(0) var color: vec4; - -struct VertexOutput { - @location(0) color: vec4, - @builtin(position) position: vec4, -}; - -@vertex -fn vs_main(@builtin(vertex_index) in_vertex_index: u32) -> VertexOutput { - let x = f32(i32(in_vertex_index / 2u) * 2 - 1); - let y = f32(i32(in_vertex_index & 1u) * 2 - 1); - return VertexOutput(color, vec4(x, y, 0.0, 1.0)); -} - -@fragment -fn fs_main(vertex: VertexOutput) -> @location(0) vec4 { - return vertex.color; -} \ No newline at end of file