Shaders/textureRect.fsh
#version 150 |
in vec2 textureCoord; |
out vec4 fragColor; |
uniform sampler2DRect tex; |
void main() |
{ |
fragColor = texture(tex, textureCoord); |
} |
Copyright © 2014 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2014-10-13