ktx-async 0.1.1

Asynchronous reader for KTX texture format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#version 100

attribute vec2 position;
attribute vec2 texcoord;

varying lowp vec4 v_texcoord;

void main()
{
    gl_Position = vec4(position, 0.0, 1.0);
    v_texcoord = vec4(texcoord, 0.0, 0.0);
}