gpu: add foundation for interface
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
bf8076918b
commit
414887db2a
8 changed files with 181 additions and 64 deletions
|
|
@ -14,5 +14,20 @@
|
|||
//!
|
||||
//! Note: WebGPU’s coordinate systems match DirectX’s coordinate systems in a graphics pipeline.
|
||||
//!
|
||||
//! https://gpuweb.github.io/gpuweb
|
||||
//!
|
||||
const std = @import("std");
|
||||
const Adapter = @import("Adapter.zig");
|
||||
const Device = @import("Device.zig");
|
||||
|
||||
const native = @import("native.zig").native;
|
||||
|
||||
const FeatureName = @import("feature_name.zig").FeatureName;
|
||||
const SupportedLimits = @import("supported_limits.zig").SupportedLimits;
|
||||
|
||||
test "syntax" {
|
||||
_ = Adapter;
|
||||
_ = Device;
|
||||
_ = native;
|
||||
_ = FeatureName;
|
||||
_ = SupportedLimits;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue