simpleF.glsl
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:0k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file simpleF.glsl
  3.  *
  4.  * Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
  5.  * $License$
  6.  */
  7. uniform sampler2DRect RenderTexture;
  8. void main(void) 
  9. {
  10. vec3 color = vec3(texture2DRect(RenderTexture, gl_TexCoord[0].st));
  11. gl_FragColor = vec4(1.0 - color, 1.0);
  12. }