diff options
Diffstat (limited to 'Assets/Common/Shaders/frag/RefCubeMapTex_RGBChange_DistDark_Qt.frag')
-rw-r--r-- | Assets/Common/Shaders/frag/RefCubeMapTex_RGBChange_DistDark_Qt.frag | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Assets/Common/Shaders/frag/RefCubeMapTex_RGBChange_DistDark_Qt.frag b/Assets/Common/Shaders/frag/RefCubeMapTex_RGBChange_DistDark_Qt.frag new file mode 100644 index 0000000..aec29d2 --- /dev/null +++ b/Assets/Common/Shaders/frag/RefCubeMapTex_RGBChange_DistDark_Qt.frag @@ -0,0 +1,26 @@ +#ifndef GL_ES
+
+#define lowp
+#define mediump
+#define highp
+#define precision
+
+#endif
+
+uniform highp samplerCube u_CubeMapTexture;
+uniform highp vec3 u_rgbFactor;
+uniform highp float u_alphaFactor;
+
+uniform mediump float u_Dist_Rate;
+uniform mediump float u_Dist_Position_Rate;
+
+
+varying highp vec3 v_CubeTexCoord;
+varying highp float v_Distance;
+
+void main()
+{
+ highp float DistDark = u_Dist_Position_Rate - v_Distance * u_Dist_Rate;
+
+ gl_FragColor = textureCube(u_CubeMapTexture, v_CubeTexCoord) * vec4(u_rgbFactor * DistDark, u_alphaFactor);
+}
|