You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: wgpu-types/src/lib.rs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -5649,6 +5649,8 @@ bitflags::bitflags! {
5649
5649
/// Image atomic enabled storage.
5650
5650
/// cbindgen:ignore
5651
5651
constSTORAGE_ATOMIC = 1 << 11;
5652
+
/// Transient texture that may not have any backing memory. Not a resource state stored in the trackers, only used for passing down usages to create_texture.
5653
+
constTRANSIENT = 1 << 12;
5652
5654
/// The combination of states that a texture may be in _at the same time_.
/// Flag used by the wgpu-core texture tracker to say a texture is in different states for every sub-resource
5665
-
constCOMPLEX = 1 << 12;
5667
+
constCOMPLEX = 1 << 13;
5666
5668
/// Flag used by the wgpu-core texture tracker to say that the tracker does not know the state of the sub-resource.
5667
5669
/// This is different from UNINITIALIZED as that says the tracker does know, but the texture has not been initialized.
5668
-
constUNKNOWN = 1 << 13;
5669
-
/// Transient texture that may not have any backing memory. Not a resource state stored in the trackers, only used for passing down usages to create_texture.
0 commit comments