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