hlsl_rb.fx
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:0k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. sampler Texture : register(s0);
  2. float4 main(float2 Tex : TEXCOORD0) : COLOR
  3. {
  4. float4 c = tex2D(Texture, Tex);
  5. c.rgba = c.bgra;
  6. return c;
  7. }