| 790 | _orig->CopyStructureCount(pDstBuffer, DstAlignedByteOffset, pSrcView); |
| 791 | } |
| 792 | void STDMETHODCALLTYPE D3D11DeviceContext::ClearRenderTargetView(ID3D11RenderTargetView *pRenderTargetView, const FLOAT ColorRGBA[4]) |
| 793 | { |
| 794 | #if RESHADE_ADDON |
| 795 | if (reshade::invoke_addon_event<reshade::addon_event::clear_render_target_view>(this, to_handle(pRenderTargetView), ColorRGBA, 0, nullptr)) |
| 796 | return; |
| 797 | #endif |
| 798 | _orig->ClearRenderTargetView(pRenderTargetView, ColorRGBA); |
| 799 | } |
| 800 | void STDMETHODCALLTYPE D3D11DeviceContext::ClearUnorderedAccessViewUint(ID3D11UnorderedAccessView *pUnorderedAccessView, const UINT Values[4]) |
| 801 | { |
| 802 | #if RESHADE_ADDON |
no test coverage detected