gpu: centralize FeatureName -> enums.zig
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
1ad93c1fbb
commit
bb18701609
4 changed files with 3 additions and 3 deletions
|
|
@ -19,7 +19,7 @@
|
||||||
//! https://gpuweb.github.io/gpuweb/#gpuadapter
|
//! https://gpuweb.github.io/gpuweb/#gpuadapter
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
|
||||||
const FeatureName = @import("feature_name.zig").FeatureName;
|
const FeatureName = @import("enums.zig").FeatureName;
|
||||||
const Limits = @import("Limits.zig");
|
const Limits = @import("Limits.zig");
|
||||||
const Device = @import("Device.zig");
|
const Device = @import("Device.zig");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
//!
|
//!
|
||||||
//! https://gpuweb.github.io/gpuweb/#devices
|
//! https://gpuweb.github.io/gpuweb/#devices
|
||||||
//! https://gpuweb.github.io/gpuweb/#gpuadapter
|
//! https://gpuweb.github.io/gpuweb/#gpuadapter
|
||||||
const FeatureName = @import("feature_name.zig").FeatureName;
|
const FeatureName = @import("enums.zig").FeatureName;
|
||||||
const Limits = @import("Limits.zig");
|
const Limits = @import("Limits.zig");
|
||||||
const Queue = @import("Queue.zig");
|
const Queue = @import("Queue.zig");
|
||||||
const ShaderModule = @import("ShaderModule.zig");
|
const ShaderModule = @import("ShaderModule.zig");
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ pub const CommandBuffer = @import("CommandBuffer.zig");
|
||||||
pub const ShaderModule = @import("ShaderModule.zig");
|
pub const ShaderModule = @import("ShaderModule.zig");
|
||||||
pub const SwapChain = @import("SwapChain.zig");
|
pub const SwapChain = @import("SwapChain.zig");
|
||||||
|
|
||||||
pub const FeatureName = @import("feature_name.zig").FeatureName;
|
pub const FeatureName = @import("enums.zig").FeatureName;
|
||||||
pub const TextureUsage = @import("texture_usage.zig").TextureUsage;
|
pub const TextureUsage = @import("texture_usage.zig").TextureUsage;
|
||||||
pub const TextureFormat = @import("texture_format.zig").TextureFormat;
|
pub const TextureFormat = @import("texture_format.zig").TextureFormat;
|
||||||
pub const PresentMode = @import("present_mode.zig").PresentMode;
|
pub const PresentMode = @import("present_mode.zig").PresentMode;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue