diff options
author | 2022-07-02 22:29:49 +0800 | |
---|---|---|
committer | 2022-07-02 22:29:49 +0800 | |
commit | a88155b2a28bfcbe39c7b87d7e9befb73a7dc8d7 (patch) | |
tree | 16b32e027721237bdc827de4e86ebc76251dd889 /wgpu/src/shader/image.wgsl | |
parent | 64e37b26301eeab27b1089062bf24120306a3e86 (diff) | |
download | iced-a88155b2a28bfcbe39c7b87d7e9befb73a7dc8d7.tar.gz iced-a88155b2a28bfcbe39c7b87d7e9befb73a7dc8d7.tar.bz2 iced-a88155b2a28bfcbe39c7b87d7e9befb73a7dc8d7.zip |
fix `wgsl` syntax
Diffstat (limited to 'wgpu/src/shader/image.wgsl')
-rw-r--r-- | wgpu/src/shader/image.wgsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wgpu/src/shader/image.wgsl b/wgpu/src/shader/image.wgsl index bb1c6b9d..773ef90a 100644 --- a/wgpu/src/shader/image.wgsl +++ b/wgpu/src/shader/image.wgsl @@ -1,5 +1,5 @@ struct Globals { - transform: mat4x4<f32>; + transform: mat4x4<f32>, }; @group(0) @binding(0) var<uniform> globals: Globals; |