pub trait NvScissorExclusiveExtension: DeviceV1_0 {
    const METADATA: Extension = NV_SCISSOR_EXCLUSIVE_EXTENSION;

    // Provided methods
    unsafe fn cmd_set_exclusive_scissor_enable_nv(
        &self,
        command_buffer: CommandBuffer,
        first_exclusive_scissor: u32,
        exclusive_scissor_enables: &[Bool32]
    ) { ... }
    unsafe fn cmd_set_exclusive_scissor_nv(
        &self,
        command_buffer: CommandBuffer,
        first_exclusive_scissor: u32,
        exclusive_scissors: &[impl Cast<Target = Rect2D>]
    ) { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = NV_SCISSOR_EXCLUSIVE_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§