aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rwxr-xr-xsystem/settings/settings.xml2
-rw-r--r--system/shaders/output_d3d.fx6
2 files changed, 4 insertions, 4 deletions
diff --git a/system/settings/settings.xml b/system/settings/settings.xml
index ad46926425..99579c15f6 100755
--- a/system/settings/settings.xml
+++ b/system/settings/settings.xml
@@ -991,7 +991,7 @@
</setting>
<setting id="videolibrary.musicvideosallperformers" type="boolean" label="20472" help="36308">
<level>1</level>
- <default>false</default>
+ <default>true</default>
<control type="toggle" />
</setting>
</group>
diff --git a/system/shaders/output_d3d.fx b/system/shaders/output_d3d.fx
index 9e4f250850..a3f73412f8 100644
--- a/system/shaders/output_d3d.fx
+++ b/system/shaders/output_d3d.fx
@@ -156,8 +156,8 @@ float4 output4(float4 color, float2 uv)
#if defined(KODI_DITHER)
half2 ditherpos = uv * m_ditherParams.xy;
// scale ditherval to [0,1)
- float ditherval = m_ditherMatrix.Sample(DitherSampler, ditherpos).r * 16.0;
- color = floor(color * m_ditherParams.z + ditherval) / m_ditherParams.z;
+ float ditherval = m_ditherMatrix.Sample(DitherSampler, ditherpos).r * 16.0f;
+ color.rgb = floor(color.rgb * m_ditherParams.z + ditherval) / m_ditherParams.z;
#endif
return color;
}
@@ -189,7 +189,7 @@ technique11 OUTPUT_T
pass P0
{
SetVertexShader( VS_SHADER );
- SetPixelShader( CompileShader( ps_4_0_level_9_1, OUTPUT_PS() ) );
+ SetPixelShader( CompileShader( ps_4_0_level_9_3, OUTPUT_PS() ) );
}
};
#endif \ No newline at end of file