diff options
Diffstat (limited to 'productviewer')
-rw-r--r-- | productviewer/product.frag | 7 | ||||
-rw-r--r-- | productviewer/product.vert | 9 |
2 files changed, 16 insertions, 0 deletions
diff --git a/productviewer/product.frag b/productviewer/product.frag new file mode 100644 index 0000000..6bbb24d --- /dev/null +++ b/productviewer/product.frag @@ -0,0 +1,7 @@ +precision mediump float; +varying vec2 v_texcoord; +uniform sampler2D s_texture; +void main() +{ + gl_FragColor = texture2D(s_texture, v_texcoord); +} diff --git a/productviewer/product.vert b/productviewer/product.vert new file mode 100644 index 0000000..b040d01 --- /dev/null +++ b/productviewer/product.vert @@ -0,0 +1,9 @@ +uniform mat4 u_matrix; +attribute vec4 a_position; +attribute vec2 a_texcoord; +varying vec2 v_texcoord; +void main() +{ + gl_Position = u_matrix * a_position; + v_texcoord = a_texcoord; +} |