gpu: fix filename case sensitivity
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
ae3137cb98
commit
1b2ca96541
7 changed files with 0 additions and 0 deletions
18
gpu/src/sampler.zig
Normal file
18
gpu/src/sampler.zig
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
pub const Sampler = enum(usize) {
|
||||
_,
|
||||
|
||||
pub const none: Sampler = @intToEnum(Sampler, 0);
|
||||
|
||||
pub const AddressMode = enum(u32) {
|
||||
repeat = 0x00000000,
|
||||
mirror_repeat = 0x00000001,
|
||||
clamp_to_edge = 0x00000002,
|
||||
};
|
||||
|
||||
pub const BindingType = enum(u32) {
|
||||
undef = 0x00000000,
|
||||
filtering = 0x00000001,
|
||||
non_filtering = 0x00000002,
|
||||
comparison = 0x00000003,
|
||||
};
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue