mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-25 22:56:11 +03:00
10 lines
169 B
GLSL
10 lines
169 B
GLSL
attribute vec4 a_pos;
|
|
attribute vec2 a_tile_pos;
|
|
varying vec2 v_tile_pos;
|
|
|
|
void main() {
|
|
// Pass the overlay tiles
|
|
v_tile_pos = a_tile_pos;
|
|
gl_Position = a_pos;
|
|
}
|