<struct name="COLOR_CALC_STATE" length="6">
<field name="Stencil Reference Value" start="24" end="31" type="uint"/>
- <field name="BackFace Stencil Reference Value" start="16" end="23" type="uint"/>
+ <field name="Backface Stencil Reference Value" start="16" end="23" type="uint"/>
<field name="Round Disable Function Disable" start="15" end="15" type="bool"/>
<field name="Alpha Test Format" start="0" end="0" type="uint">
<value name="ALPHATEST_UNORM8" value="0"/>
<field name="Stencil Pass Depth Pass Op" start="19" end="21" type="uint"/>
<field name="Stencil Buffer Write Enable" start="18" end="18" type="bool"/>
<field name="Double Sided Stencil Enable" start="15" end="15" type="bool"/>
- <field name="BackFace Stencil Test Function" start="12" end="14" type="uint">
+ <field name="Backface Stencil Test Function" start="12" end="14" type="uint">
<value name="COMPAREFUNCTION_ALWAYS" value="0"/>
<value name="COMPAREFUNCTION_NEVER" value="1"/>
<value name="COMPAREFUNCTION_LESS" value="2"/>
<struct name="COLOR_CALC_STATE" length="6">
<field name="Stencil Reference Value" start="24" end="31" type="uint"/>
- <field name="BackFace Stencil Reference Value" start="16" end="23" type="uint"/>
+ <field name="Backface Stencil Reference Value" start="16" end="23" type="uint"/>
<field name="Round Disable Function Disable" start="15" end="15" type="bool"/>
<field name="Alpha Test Format" start="0" end="0" type="uint">
<value name="ALPHATEST_UNORM8" value="0"/>
<field name="Stencil Pass Depth Pass Op" start="19" end="21" type="uint"/>
<field name="Stencil Buffer Write Enable" start="18" end="18" type="bool"/>
<field name="Double Sided Stencil Enable" start="15" end="15" type="bool"/>
- <field name="BackFace Stencil Test Function" start="12" end="14" type="uint">
+ <field name="Backface Stencil Test Function" start="12" end="14" type="uint">
<value name="COMPAREFUNCTION_ALWAYS" value="0"/>
<value name="COMPAREFUNCTION_NEVER" value="1"/>
<value name="COMPAREFUNCTION_LESS" value="2"/>
<struct name="COLOR_CALC_STATE" length="6">
<field name="Stencil Reference Value" start="24" end="31" type="uint"/>
- <field name="BackFace Stencil Reference Value" start="16" end="23" type="uint"/>
+ <field name="Backface Stencil Reference Value" start="16" end="23" type="uint"/>
<field name="Round Disable Function Disable" start="15" end="15" type="bool"/>
<field name="Alpha Test Format" start="0" end="0" type="uint">
<value name="ALPHATEST_UNORM8" value="0"/>
<field name="Stencil Pass Depth Pass Op" start="19" end="21" type="uint"/>
<field name="Stencil Buffer Write Enable" start="18" end="18" type="bool"/>
<field name="Double Sided Stencil Enable" start="15" end="15" type="bool"/>
- <field name="BackFace Stencil Test Function" start="12" end="14" type="uint">
+ <field name="Backface Stencil Test Function" start="12" end="14" type="uint">
<value name="COMPAREFUNCTION_ALWAYS" value="0"/>
<value name="COMPAREFUNCTION_NEVER" value="1"/>
<value name="COMPAREFUNCTION_LESS" value="2"/>
.BlendConstantColorBlue = cmd_buffer->state.dynamic.blend_constants[2],
.BlendConstantColorAlpha = cmd_buffer->state.dynamic.blend_constants[3],
.StencilReferenceValue = d->stencil_reference.front & 0xff,
- .BackFaceStencilReferenceValue = d->stencil_reference.back & 0xff,
+ .BackfaceStencilReferenceValue = d->stencil_reference.back & 0xff,
};
GENX(COLOR_CALC_STATE_pack)(NULL, cc_state.map, &cc);
if (!cmd_buffer->device->info.has_llc)
.BackfaceStencilFailOp = vk_to_gen_stencil_op[info->back.failOp],
.BackfaceStencilPassDepthPassOp = vk_to_gen_stencil_op[info->back.passOp],
.BackfaceStencilPassDepthFailOp = vk_to_gen_stencil_op[info->back.depthFailOp],
- .BackFaceStencilTestFunction = vk_to_gen_compare_op[info->back.compareOp],
+ .BackfaceStencilTestFunction = vk_to_gen_compare_op[info->back.compareOp],
};
GENX(DEPTH_STENCIL_STATE_pack)(NULL, &pipeline->gen7.depth_stencil_state, &state);