diff options
| author | grothedev <grothedev@gmail.com> | 2026-05-29 21:34:16 -0400 |
|---|---|---|
| committer | grothedev <grothedev@gmail.com> | 2026-05-29 21:34:16 -0400 |
| commit | 27dc5849c3eaf4824d79938e7077abdbe2c82e24 (patch) | |
| tree | 4a6e963d291132ad6f5a22841ea2404b60949366 /cpp-timeplot/shaders/waterfall.wgsl | |
| parent | 73d75835e18a33c7f6c1b09bbcef93b16a7a9bfa (diff) | |
updates from claude. need to review. archiving rust and cpp stuff, going completely TS
Diffstat (limited to 'cpp-timeplot/shaders/waterfall.wgsl')
| -rw-r--r-- | cpp-timeplot/shaders/waterfall.wgsl | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/cpp-timeplot/shaders/waterfall.wgsl b/cpp-timeplot/shaders/waterfall.wgsl deleted file mode 100644 index 6655301..0000000 --- a/cpp-timeplot/shaders/waterfall.wgsl +++ /dev/null @@ -1,22 +0,0 @@ -struct VertexInput { - @location(0) position: vec2<f32>, - @location(1) color: vec3<f32>, -} - -struct VertexOutput { - @builtin(position) clip_position: vec4<f32>, - @location(0) color: vec3<f32>, -} - -@vertex -fn vs_main(in: VertexInput) -> VertexOutput { - var out: VertexOutput; - out.clip_position = vec4<f32>(in.position, 0.0, 1.0); - out.color = in.color; - return out; -} - -@fragment -fn fs_main(in: VertexOutput) -> @location(0) vec4<f32> { - return vec4<f32>(in.color, 1.0); -} |
