gpu: remove usingnamespace for callbacks.zig and types.zig (#798)

This commit is contained in:
Tech0tron 2023-06-04 21:04:56 -06:00 committed by GitHub
parent 958664bb0b
commit fef0299886
Failed to generate hash of commit
27 changed files with 965 additions and 987 deletions

View file

@ -1,7 +1,7 @@
const Buffer = @import("buffer.zig").Buffer;
const Sampler = @import("sampler.zig").Sampler;
const TextureView = @import("texture_view.zig").TextureView;
const ChainedStruct = @import("types.zig").ChainedStruct;
const ChainedStruct = @import("main.zig").ChainedStruct;
const BindGroupLayout = @import("bind_group_layout.zig").BindGroupLayout;
const ExternalTexture = @import("external_texture.zig").ExternalTexture;
const Impl = @import("interface.zig").Impl;