pub type ULGPUDriverUpdateCommandListCallback = Option<unsafe extern "C" fn(list: ULCommandList)>;
Expand description

The callback invoked when the GPUDriver wants to update the command list (you should copy the commands to your own structure).

Aliased Type§

enum ULGPUDriverUpdateCommandListCallback {
    None,
    Some(unsafe extern "C" fn(_: ULCommandList)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: ULCommandList))

Some value of type T.