mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 06:23:55 +01:00
12 lines
215 B
GLSL
12 lines
215 B
GLSL
varying vec2 v_vTexcoord;
|
|
varying vec4 v_vColour;
|
|
|
|
uniform vec2 dimension;
|
|
uniform sampler2D surface;
|
|
|
|
void main() {
|
|
vec2 tx = 1. / dimension;
|
|
|
|
gl_FragColor = texture2D( gm_BaseTexture, v_vTexcoord );
|
|
}
|