gpu: add foundation for interface

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-06 15:47:27 -07:00 committed by Stephen Gutekanst
parent bf8076918b
commit 414887db2a
8 changed files with 181 additions and 64 deletions

View file

@ -14,5 +14,20 @@
//!
//! Note: WebGPUs coordinate systems match DirectXs 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;
}