gpu: add ImageCopyBuffer; ImageCopyTexture

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-11 17:31:57 -07:00 committed by Stephen Gutekanst
parent d1bad15add
commit 85041d6f93
3 changed files with 17 additions and 33 deletions

View file

@ -103,6 +103,8 @@ pub const RenderPassColorAttachment = @import("structs.zig").RenderPassColorAtta
pub const VertexState = @import("structs.zig").VertexState;
pub const FragmentState = @import("structs.zig").FragmentState;
pub const ColorTargetState = @import("structs.zig").ColorTargetState;
pub const ImageCopyBuffer = @import("structs.zig").ImageCopyBuffer;
pub const ImageCopyTexture = @import("structs.zig").ImageCopyTexture;
// Enumerations
pub const Feature = @import("enums.zig").Feature;