| 520 | } |
| 521 | |
| 522 | HRESULT CD3D11VP::SetRectangles(const RECT* pSrcRect, const RECT* pDstRect) |
| 523 | { |
| 524 | CheckPointer(m_pVideoContext, E_ABORT); |
| 525 | |
| 526 | m_pVideoContext->VideoProcessorSetStreamSourceRect(m_pVideoProcessor, 0, pSrcRect ? TRUE : FALSE, pSrcRect); |
| 527 | m_pVideoContext->VideoProcessorSetStreamDestRect(m_pVideoProcessor, 0, pDstRect ? TRUE : FALSE, pDstRect); |
| 528 | |
| 529 | return S_OK; |
| 530 | } |
| 531 | |
| 532 | void CD3D11VP::SetRotation(D3D11_VIDEO_PROCESSOR_ROTATION rotation) |
| 533 | { |
nothing calls this directly
no outgoing calls
no test coverage detected