mach/gpu/src/compute_pass_encoder.zig
Stephen Gutekanst c3cc9d5ae2 gpu: add TODOs regarding nullability
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
2022-08-12 00:43:43 -07:00

6 lines
205 B
Zig

pub const ComputePassEncoder = enum(usize) {
_,
// TODO: verify there is a use case for nullable value of this type.
pub const none: ComputePassEncoder = @intToEnum(ComputePassEncoder, 0);
};