Fix colons
This commit is contained in:
parent
99e1923066
commit
15836f2876
5 changed files with 49 additions and 49 deletions
|
|
@ -1,15 +1,15 @@
|
|||
struct Settings {
|
||||
size : vec2<f32>,
|
||||
deltaTime : f32,
|
||||
time : f32,
|
||||
size: vec2<f32>,
|
||||
deltaTime: f32,
|
||||
time: f32,
|
||||
|
||||
diffusionRate : f32,
|
||||
decayRate : f32,
|
||||
diffusionRate: f32,
|
||||
decayRate: f32,
|
||||
};
|
||||
|
||||
@group(0) @binding(0) var<uniform> settings : Settings;
|
||||
@group(0) @binding(0) var<uniform> settings: Settings;
|
||||
@group(0) @binding(1) var Sampler: sampler;
|
||||
@group(0) @binding(2) var trailMap : texture_2d<f32>;
|
||||
@group(0) @binding(2) var trailMap: texture_2d<f32>;
|
||||
|
||||
@fragment
|
||||
fn fragment(@location(0) uv: vec2<f32>) -> @location(0) vec4<f32> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue