| 317 | } |
| 318 | |
| 319 | static void NRI_CALL CmdSetStencilReference(CommandBuffer& commandBuffer, uint8_t frontRef, uint8_t backRef) { |
| 320 | ((CommandBufferVal&)commandBuffer).SetStencilReference(frontRef, backRef); |
| 321 | } |
| 322 | |
| 323 | static void NRI_CALL CmdSetDepthBounds(CommandBuffer& commandBuffer, float boundsMin, float boundsMax) { |
| 324 | ((CommandBufferVal&)commandBuffer).SetDepthBounds(boundsMin, boundsMax); |
nothing calls this directly
no test coverage detected