gpu: add BufferBindingType enum

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-09 10:11:30 -07:00 committed by Stephen Gutekanst
parent ce0389df23
commit 0ddbfaf2b3
3 changed files with 9 additions and 8 deletions

View file

@ -27,14 +27,6 @@ typedef struct WGPUSamplerImpl* WGPUSampler;
typedef struct WGPUTextureImpl* WGPUTexture; typedef struct WGPUTextureImpl* WGPUTexture;
typedef struct WGPUTextureViewImpl* WGPUTextureView; typedef struct WGPUTextureViewImpl* WGPUTextureView;
typedef enum WGPUBufferBindingType {
WGPUBufferBindingType_Undefined = 0x00000000,
WGPUBufferBindingType_Uniform = 0x00000001,
WGPUBufferBindingType_Storage = 0x00000002,
WGPUBufferBindingType_ReadOnlyStorage = 0x00000003,
WGPUBufferBindingType_Force32 = 0x7FFFFFFF
} WGPUBufferBindingType;
typedef enum WGPUBufferMapAsyncStatus { typedef enum WGPUBufferMapAsyncStatus {
WGPUBufferMapAsyncStatus_Success = 0x00000000, WGPUBufferMapAsyncStatus_Success = 0x00000000,
WGPUBufferMapAsyncStatus_Error = 0x00000001, WGPUBufferMapAsyncStatus_Error = 0x00000001,

View file

@ -167,6 +167,13 @@ pub const BlendOperation = enum(u32) {
max = 0x00000004, max = 0x00000004,
}; };
pub const BufferBindingType = enum(u32) {
none = 0x00000000,
uniform = 0x00000001,
storage = 0x00000002,
read_only_storage = 0x00000003,
};
test "name" { test "name" {
try std.testing.expect(std.mem.eql(u8, @tagName(Feature.timestamp_query), "timestamp_query")); try std.testing.expect(std.mem.eql(u8, @tagName(Feature.timestamp_query), "timestamp_query"));
} }
@ -178,4 +185,5 @@ test "syntax" {
_ = AlphaMode; _ = AlphaMode;
_ = BlendFactor; _ = BlendFactor;
_ = BlendOperation; _ = BlendOperation;
_ = BufferBindingType;
} }

View file

@ -44,6 +44,7 @@ pub const AddressMode = @import("enums.zig").AddressMode;
pub const AlphaMode = @import("enums.zig").AlphaMode; pub const AlphaMode = @import("enums.zig").AlphaMode;
pub const BlendFactor = @import("enums.zig").BlendFactor; pub const BlendFactor = @import("enums.zig").BlendFactor;
pub const BlendOperation = @import("enums.zig").BlendOperation; pub const BlendOperation = @import("enums.zig").BlendOperation;
pub const BufferBindingType = @import("enums.zig").BufferBindingType;
test "syntax" { test "syntax" {
_ = Interface; _ = Interface;