Type Alias screen_13::driver::ResolveMode

source ·
pub type ResolveMode = ResolveMode;
👎Deprecated: Use driver::render_pass::ResolveMode instead
Expand description

Specifying depth and stencil resolve modes.

Aliased Type§

enum ResolveMode {
    Average,
    Maximum,
    Minimum,
    SampleZero,
}

Variants§

§

Average

The result of the resolve operation is the average of the sample values.

§

Maximum

The result of the resolve operation is the maximum of the sample values.

§

Minimum

The result of the resolve operation is the minimum of the sample values.

§

SampleZero

The result of the resolve operation is equal to the value of sample 0.