summaryrefslogtreecommitdiffstats
path: root/src/demos/hdr/shaders/cg/skybox_hilo.cg
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos/hdr/shaders/cg/skybox_hilo.cg')
-rwxr-xr-xsrc/demos/hdr/shaders/cg/skybox_hilo.cg9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/demos/hdr/shaders/cg/skybox_hilo.cg b/src/demos/hdr/shaders/cg/skybox_hilo.cg
deleted file mode 100755
index d7392bf..0000000
--- a/src/demos/hdr/shaders/cg/skybox_hilo.cg
+++ /dev/null
@@ -1,9 +0,0 @@
-#include "hdr.cg"
-
-half4 main(fragin In,
- uniform samplerCUBE envMap_rg : TEXUNIT0,
- uniform samplerCUBE envMap_b : TEXUNIT1) : COLOR
-{
- half3 c = texCUBE_hilo(envMap_rg, envMap_b, In.tex0).rgb;
- return half4(c, 1.0);
-}