| 313 | } |
| 314 | |
| 315 | static void NRI_CALL CmdSetScissors(CommandBuffer& commandBuffer, const Rect* rects, uint32_t rectNum) { |
| 316 | ((CommandBufferVal&)commandBuffer).SetScissors(rects, rectNum); |
| 317 | } |
| 318 | |
| 319 | static void NRI_CALL CmdSetStencilReference(CommandBuffer& commandBuffer, uint8_t frontRef, uint8_t backRef) { |
| 320 | ((CommandBufferVal&)commandBuffer).SetStencilReference(frontRef, backRef); |
nothing calls this directly
no test coverage detected