From 3b8ef19689c0c47bb75026c5ca7b25a05aac7404 Mon Sep 17 00:00:00 2001 From: DevPoodle Date: Tue, 30 Jan 2024 18:51:15 -0800 Subject: [PATCH] Add descriptions to the remaining properties of RDPipelineRasterizationState --- doc/classes/RDPipelineRasterizationState.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/classes/RDPipelineRasterizationState.xml b/doc/classes/RDPipelineRasterizationState.xml index e97113cce45..034abc688cb 100644 --- a/doc/classes/RDPipelineRasterizationState.xml +++ b/doc/classes/RDPipelineRasterizationState.xml @@ -13,17 +13,22 @@ The cull mode to use when drawing polygons, which determines whether front faces or backfaces are hidden. + A limit for how much each depth value can be offset. If negative, it serves as a minimum value, but if positive, it serves as a maximum value. + A constant offset added to each depth value. Applied after [member depth_bias_slope_factor]. + If [code]true[/code], each generated depth value will by offset by some amount. The specific amount is generated per polygon based on the values of [member depth_bias_slope_factor] and [member depth_bias_constant_factor]. + A constant scale applied to the slope of each polygons' depth. Applied before [member depth_bias_constant_factor]. If [code]true[/code], primitives are discarded immediately before the rasterization stage. + If [code]true[/code], clamps depth values according to the minimum and maximum depth of the associated viewport. The winding order to use to determine which face of a triangle is considered its front face.