26 lines
477 B
Zig
26 lines
477 B
Zig
//! ----------------------------------------------------
|
|
//! ----------------------------------------------------
|
|
|
|
const wgpu = @import("wgpu");
|
|
|
|
/// ----------------------------------------------------
|
|
/// ----------------------------------------------------
|
|
pub const Backend = enum {
|
|
vulkan,
|
|
webgpu,
|
|
opengl,
|
|
|
|
d3d11,
|
|
d3d12,
|
|
metal,
|
|
};
|
|
|
|
//
|
|
// FIELDS
|
|
//
|
|
|
|
device: []const u8,
|
|
vendor: []const u8,
|
|
|
|
backend: Backend,
|
|
surface_format: wgpu.WGPUTextureFormat,
|