11 lines
211 B
GLSL
11 lines
211 B
GLSL
#import "Common/ShaderLib/MultiSample.glsllib"
|
|
|
|
uniform COLORTEXTURE m_Texture;
|
|
varying vec2 texCoord;
|
|
|
|
void main() {
|
|
vec4 texVal = getColor(m_Texture, texCoord);
|
|
gl_FragColor = texVal;
|
|
}
|
|
|