mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 14:33:53 +01:00
9 lines
166 B
Plaintext
9 lines
166 B
Plaintext
|
varying vec2 v_vTexcoord;
|
||
|
varying vec4 v_vColour;
|
||
|
|
||
|
uniform vec2 offset;
|
||
|
|
||
|
void main() {
|
||
|
gl_FragColor = texture2D( gm_BaseTexture, fract(v_vTexcoord + offset) );
|
||
|
}
|