You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
586 B
Plaintext
37 lines
586 B
Plaintext
2 months ago
|
// Outputs luminance (grayscale) of the input image _MainTex
|
||
|
|
||
|
Shader "Hidden/Contrast Stretch Luminance" {
|
||
|
|
||
|
Properties {
|
||
|
_MainTex ("Base (RGB)", 2D) = "white" {}
|
||
|
}
|
||
|
|
||
|
Category {
|
||
|
SubShader {
|
||
|
Pass {
|
||
|
ZTest Always Cull Off ZWrite Off
|
||
|
Fog { Mode off }
|
||
|
|
||
|
CGPROGRAM
|
||
|
#pragma vertex vert_img
|
||
|
#pragma fragment frag
|
||
|
#pragma fragmentoption ARB_precision_hint_fastest
|
||
|
#include "UnityCG.cginc"
|
||
|
|
||
|
uniform sampler2D _MainTex;
|
||
|
|
||
|
float4 frag (v2f_img i) : COLOR
|
||
|
{
|
||
|
float4 col = tex2D(_MainTex, i.uv);
|
||
|
col.rgb = Luminance(col.rgb) * (1+col.a*2);
|
||
|
return col;
|
||
|
}
|
||
|
ENDCG
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Fallback off
|
||
|
|
||
|
}
|