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
diff options
context:
space:
mode:
Diffstat (limited to 'src/apps/mplayerc/res/shaders/levels2.psh')
-rw-r--r--src/apps/mplayerc/res/shaders/levels2.psh5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/apps/mplayerc/res/shaders/levels2.psh b/src/apps/mplayerc/res/shaders/levels2.psh
index 047509979..86cc6d03a 100644
--- a/src/apps/mplayerc/res/shaders/levels2.psh
+++ b/src/apps/mplayerc/res/shaders/levels2.psh
@@ -7,13 +7,12 @@ float4 p0 : register(c0);
#define const_1 (16.0/255.0)
#define const_2 (255.0/219.0)
-float4 main(float2 tex : TEXCOORD0) : COLOR
-{
+float4 main(float2 tex : TEXCOORD0) : COLOR {
// original pixel
float4 c0 = tex2D(s0,tex);
/* ATI driver only looks at the height */
- if(height >= 720 ) {
+ if (height >= 720 ) {
return c0;
} else {
return((c0 - const_1) * const_2);