
# Objective - When adding/removing bindings in large binding lists, git would generate very difficult-to-read diffs ## Solution - Move the `@group(X) @binding(Y)` into the same line as the binding type declaration
15 lines
273 B
WebGPU Shading Language
15 lines
273 B
WebGPU Shading Language
#import bevy_pbr::mesh_vertex_output MeshVertexOutput
|
|
|
|
struct LineMaterial {
|
|
color: vec4<f32>,
|
|
};
|
|
|
|
@group(1) @binding(0) var<uniform> material: LineMaterial;
|
|
|
|
@fragment
|
|
fn fragment(
|
|
mesh: MeshVertexOutput,
|
|
) -> @location(0) vec4<f32> {
|
|
return material.color;
|
|
}
|