diff options
author | 2021-04-12 23:07:58 -0700 | |
---|---|---|
committer | 2021-04-12 23:07:58 -0700 | |
commit | 0722d5e3ec307fd82a1cc76593d17d83cf828943 (patch) | |
tree | a77101fc3b316d7b1c8a6316aac03ec5d97a12c2 /wgpu/src/shader/blit.wgsl | |
parent | c719091c3d7b5f71899530437fde9b512bc2b0f3 (diff) | |
download | iced-0722d5e3ec307fd82a1cc76593d17d83cf828943.tar.gz iced-0722d5e3ec307fd82a1cc76593d17d83cf828943.tar.bz2 iced-0722d5e3ec307fd82a1cc76593d17d83cf828943.zip |
add temporary fix for image wgsl
Diffstat (limited to '')
-rw-r--r-- | wgpu/src/shader/blit.wgsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wgpu/src/shader/blit.wgsl b/wgpu/src/shader/blit.wgsl index 7a987c2c..694f192e 100644 --- a/wgpu/src/shader/blit.wgsl +++ b/wgpu/src/shader/blit.wgsl @@ -40,4 +40,4 @@ fn vs_main(input: VertexInput) -> VertexOutput { [[stage(fragment)]] fn fs_main(input: VertexOutput) -> [[location(0)]] vec4<f32> { return textureSample(u_texture, u_sampler, input.uv); -}
\ No newline at end of file +} |