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

@ -3,8 +3,8 @@ const Buffer = @import("buffer.zig").Buffer;
const BindGroup = @import("bind_group.zig").BindGroup;
const RenderPipeline = @import("render_pipeline.zig").RenderPipeline;
const RenderBundle = @import("render_bundle.zig").RenderBundle;
const ChainedStruct = @import("types.zig").ChainedStruct;
const IndexFormat = @import("types.zig").IndexFormat;
const ChainedStruct = @import("main.zig").ChainedStruct;
const IndexFormat = @import("main.zig").IndexFormat;
const Impl = @import("interface.zig").Impl;
pub const RenderBundleEncoder = opaque {