gpu: implement Sampler

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-09 11:53:45 -07:00 committed by Stephen Gutekanst
parent 1563fc7246
commit b29fa9e13d
5 changed files with 63 additions and 0 deletions

View file

@ -37,6 +37,7 @@ pub const ShaderModule = @import("ShaderModule.zig");
pub const SwapChain = @import("SwapChain.zig");
pub const TextureView = @import("TextureView.zig");
pub const Texture = @import("Texture.zig");
pub const Sampler = @import("Sampler.zig");
pub const Feature = @import("enums.zig").Feature;
pub const TextureUsage = @import("enums.zig").TextureUsage;
@ -98,6 +99,7 @@ test "syntax" {
_ = SwapChain;
_ = TextureView;
_ = Texture;
_ = Sampler;
_ = Feature;
}