Fix colons

This commit is contained in:
Andras Schmelczer 2023-04-29 21:21:34 +01:00
parent 99e1923066
commit 15836f2876
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
5 changed files with 49 additions and 49 deletions

View file

@ -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> {