mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
12 lines
215 B
Plaintext
12 lines
215 B
Plaintext
|
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 );
|
||
|
}
|