diff options
| author | 2024-01-19 20:28:45 +0100 | |
|---|---|---|
| committer | 2024-01-19 20:28:45 +0100 | |
| commit | 7ae7fcb89855002519bab752fd3686106ce448db (patch) | |
| tree | ac717dbd031e243519b446ab45e5008adef4f5dc /examples/custom_shader | |
| parent | 61e3d8502fec7e83c584218e598fa20c79363be3 (diff) | |
| parent | 9df7bf8ec30ca76016018bc758b4323760e231b0 (diff) | |
| download | iced-7ae7fcb89855002519bab752fd3686106ce448db.tar.gz iced-7ae7fcb89855002519bab752fd3686106ce448db.tar.bz2 iced-7ae7fcb89855002519bab752fd3686106ce448db.zip  | |
Merge pull request #2191 from ids1024/raw-window-handle-0.6
Update `wgpu` to `0.19`, `glyphon` to `0.5`, `softbuffer` to `0.4`, `window-clipboard` to `0.4`, and `raw-window-handle` to `0.6`
Diffstat (limited to 'examples/custom_shader')
| -rw-r--r-- | examples/custom_shader/src/scene/pipeline.rs | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/custom_shader/src/scene/pipeline.rs b/examples/custom_shader/src/scene/pipeline.rs index 124b421f..50b70a98 100644 --- a/examples/custom_shader/src/scene/pipeline.rs +++ b/examples/custom_shader/src/scene/pipeline.rs @@ -97,6 +97,7 @@ impl Pipeline {                  usage: wgpu::TextureUsages::TEXTURE_BINDING,                  view_formats: &[],              }, +            wgpu::util::TextureDataOrder::LayerMajor,              &normal_map_data,          ); @@ -122,6 +123,7 @@ impl Pipeline {                  usage: wgpu::TextureUsages::TEXTURE_BINDING,                  view_formats: &[],              }, +            wgpu::util::TextureDataOrder::LayerMajor,              &skybox_data,          );  | 
