Function depthMode [src]
Only valid with the Fragment calling convention.
Prototype
pub fn depthMode(comptime entry_point: anytype, comptime mode: DepthMode) void
Parameters
mode: DepthMode
Source
pub fn depthMode(comptime entry_point: anytype, comptime mode: DepthMode) void {
asm volatile (
\\OpExecutionMode %entry_point $mode
:
: [entry_point] "" (entry_point),
[mode] "c" (mode),
);
}