hdr.cg
上传用户:xhbjoy
上传日期:2014-10-07
资源大小:38068k
文件大小:0k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. void morningskybox_fp (
  2. float2 uv : TEXCOORD0,
  3. out float4 colour : COLOR,
  4. uniform sampler2D tex : register(s0) )
  5. {
  6. colour = tex2D(tex, uv);
  7. // blow out the light a bit
  8. colour *= 1.7;
  9. }
  10. void morningcubemap_fp (
  11. float3 uv : TEXCOORD0,
  12. out float4 colour : COLOR,
  13. uniform samplerCUBE tex : register(s0) )
  14. {
  15. colour = texCUBE(tex, uv);
  16. // blow out the light a bit
  17. colour *= 1.7;
  18. }