| 2204 | } |
| 2205 | |
| 2206 | void CDX9VideoProcessor::UpdatePostScaleTexures() |
| 2207 | { |
| 2208 | const bool needDither = (m_InternalTexFmt != D3DFMT_X8R8G8B8); // the output is always D3DFMT_X8R8G8B8 |
| 2209 | |
| 2210 | m_bFinalPass = (m_bUseDither && needDither && m_TexDither.pTexture && m_pPSFinalPass); |
| 2211 | |
| 2212 | const UINT numPostScaleSteps = GetPostScaleSteps(); |
| 2213 | HRESULT hr = m_TexsPostScale.CheckCreate(m_pD3DDevEx, m_InternalTexFmt, m_windowRect.Width(), m_windowRect.Height(), numPostScaleSteps); |
| 2214 | //UpdateStatsPostProc(); |
| 2215 | } |
| 2216 | |
| 2217 | void CDX9VideoProcessor::UpdateUpscalingShaders() |
| 2218 | { |
nothing calls this directly
no test coverage detected