misc */
| 66 | |
| 67 | /* misc */ |
| 68 | bv_variable lib_hlsl_abort(bv_program* prog, u8 count, bv_variable* args) |
| 69 | { |
| 70 | ((sd::ShaderDebugger*)prog->user_data)->SetDiscarded(true); |
| 71 | return bv_variable_create_void(); |
| 72 | } |
| 73 | bv_variable lib_hlsl_clip(bv_program* prog, u8 count, bv_variable* args) |
| 74 | { |
| 75 | bool shouldDiscard = false; |
nothing calls this directly
no test coverage detected