gpu: move TextureComponentType -> Texture.ComponentType

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-11 15:59:27 -07:00 committed by Stephen Gutekanst
parent b02dbb2f03
commit 23aad28093
3 changed files with 8 additions and 9 deletions

View file

@ -203,13 +203,6 @@ pub const StoreOp = enum(u32) {
discard = 0x00000002,
};
pub const TextureComponentType = enum(u32) {
float = 0x00000000,
sint = 0x00000001,
uint = 0x00000002,
depth_comparison = 0x00000003,
};
pub const TextureDimension = enum(u32) {
dimension_1d = 0x00000000,
dimension_2d = 0x00000001,
@ -343,7 +336,6 @@ test "syntax" {
_ = StencilOperation;
_ = StorageTextureAccess;
_ = StoreOp;
_ = TextureComponentType;
_ = TextureDimension;
_ = TextureSampleType;
_ = TextureViewDimension;