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,6 +1,6 @@
const ChainedStruct = @import("types.zig").ChainedStruct;
const ChainedStructOut = @import("types.zig").ChainedStructOut;
const PowerPreference = @import("types.zig").PowerPreference;
const ChainedStruct = @import("main.zig").ChainedStruct;
const ChainedStructOut = @import("main.zig").ChainedStructOut;
const PowerPreference = @import("main.zig").PowerPreference;
const Texture = @import("texture.zig").Texture;
pub const Interface = @import("dawn_impl.zig").Interface;