diff options
author | 2022-11-05 03:18:13 +0100 | |
---|---|---|
committer | 2022-11-05 03:20:00 +0100 | |
commit | 438f97a6d00ad0312e7c84b4c1529968bdfba849 (patch) | |
tree | fbd6f3e26b52947810d4f30943a8cdff5b103cb2 /glow | |
parent | 8ce8d374b1e8d1d394a42a5ee2bca8af790f0b71 (diff) | |
download | iced-438f97a6d00ad0312e7c84b4c1529968bdfba849.tar.gz iced-438f97a6d00ad0312e7c84b4c1529968bdfba849.tar.bz2 iced-438f97a6d00ad0312e7c84b4c1529968bdfba849.zip |
Use RGBA texture for `image` and `svg` pipelines
Diffstat (limited to 'glow')
-rw-r--r-- | glow/src/image/storage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glow/src/image/storage.rs b/glow/src/image/storage.rs index e2171fb5..9bc20641 100644 --- a/glow/src/image/storage.rs +++ b/glow/src/image/storage.rs @@ -27,7 +27,7 @@ impl image::Storage for Storage { width as i32, height as i32, 0, - glow::BGRA, + glow::RGBA, glow::UNSIGNED_BYTE, Some(data), ); |