gpu: centralize TextureFormat -> enums.zig

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-09 09:52:25 -07:00 committed by Stephen Gutekanst
parent 48c496c3e5
commit 37c8fd797f
5 changed files with 103 additions and 102 deletions

View file

@ -22,7 +22,7 @@ const ShaderModule = @import("ShaderModule.zig");
const SwapChain = @import("SwapChain.zig");
const TextureUsage = @import("texture_usage.zig").TextureUsage;
const TextureFormat = @import("texture_format.zig").TextureFormat;
const TextureFormat = @import("enums.zig").TextureFormat;
const PresentMode = @import("enums.zig").PresentMode;
const NativeInstance = @This();