Added COLLADA and glTF formats for vulkanscene

This commit is contained in:
saschawillems 2015-08-16 11:58:50 +02:00
parent 8f33b69843
commit 06c9126a02
8 changed files with 5410 additions and 2 deletions

View file

@ -0,0 +1,12 @@
precision highp float;
attribute vec3 a_position;
attribute vec3 a_normal;
varying vec3 v_normal;
uniform mat3 u_normalMatrix;
uniform mat4 u_modelViewMatrix;
uniform mat4 u_projectionMatrix;
void main(void) {
vec4 pos = u_modelViewMatrix * vec4(a_position,1.0);
v_normal = u_normalMatrix * a_normal;
gl_Position = u_projectionMatrix * pos;
}