gpu: implement Texture

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-09 11:48:39 -07:00 committed by Stephen Gutekanst
parent 13b4a93a87
commit 1563fc7246
4 changed files with 47 additions and 7 deletions

View file

@ -36,6 +36,7 @@ pub const CommandBuffer = @import("CommandBuffer.zig");
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 Feature = @import("enums.zig").Feature;
pub const TextureUsage = @import("enums.zig").TextureUsage;
@ -96,6 +97,7 @@ test "syntax" {
_ = ShaderModule;
_ = SwapChain;
_ = TextureView;
_ = Texture;
_ = Feature;
}