Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authora_afra <a_afra@users.sourceforge.net>2010-08-24 21:30:40 +0400
committera_afra <a_afra@users.sourceforge.net>2010-08-24 21:30:40 +0400
commitda01a62ff7b5aa0fbe84cdf4e3b026bbef1a19e2 (patch)
tree36da42bf6f4fb6a5568447449a170c58a07f23e8 /src
parent2003a604a79eb6a470e047c799710477b77ccbf9 (diff)
Added ColorMan, FullFP, 10bitOut and For10bitIn status to EVR-CP/VMR9 graph settings
This commit fixes ticket #679 git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@2325 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src')
-rw-r--r--src/filters/renderer/VideoRenderers/DX9AllocatorPresenter.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/filters/renderer/VideoRenderers/DX9AllocatorPresenter.cpp b/src/filters/renderer/VideoRenderers/DX9AllocatorPresenter.cpp
index f325729cf..271d342f4 100644
--- a/src/filters/renderer/VideoRenderers/DX9AllocatorPresenter.cpp
+++ b/src/filters/renderer/VideoRenderers/DX9AllocatorPresenter.cpp
@@ -2072,6 +2072,9 @@ void CDX9AllocatorPresenter::DrawStats()
if (s.m_RenderSettings.iVMRDisableDesktopComposition)
strText += "DisDC ";
+ if (s.m_RenderSettings.iVMR9ColorManagementEnable)
+ strText += "ColorMan ";
+
if (s.m_RenderSettings.iVMRFlushGPUBeforeVSync)
strText += "GPUFlushBV ";
if (s.m_RenderSettings.iVMRFlushGPUAfterPresent)
@@ -2089,10 +2092,15 @@ void CDX9AllocatorPresenter::DrawStats()
if (s.m_RenderSettings.iVMR9VSyncOffset)
strText.AppendFormat(L"VSOfst(%d)", s.m_RenderSettings.iVMR9VSyncOffset);
+ if (s.m_RenderSettings.iVMR9FullFloatingPointProcessing)
+ strText += "FullFP ";
+
if (m_bIsEVR)
{
if (s.m_RenderSettings.iEVRHighColorResolution)
- strText += "10bit ";
+ strText += "10bitOut ";
+ if (s.m_RenderSettings.iEVRForceInputHighColorResolution)
+ strText += "For10bitIn ";
if (s.m_RenderSettings.iEVREnableFrameTimeCorrection)
strText += "FTC ";
if (s.m_RenderSettings.iEVROutputRange == 0)