new stuff
This commit is contained in:
parent
8998bc3936
commit
64c8492e5c
6907 changed files with 3401899 additions and 0 deletions
17
vendor/assimp/test/models/glTF2/BoxTextured-glTF-techniqueWebGL/BoxTextured0.vert
vendored
Normal file
17
vendor/assimp/test/models/glTF2/BoxTextured-glTF-techniqueWebGL/BoxTextured0.vert
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
precision highp float;
|
||||
uniform mat4 u_modelViewMatrix;
|
||||
uniform mat4 u_projectionMatrix;
|
||||
uniform mat3 u_normalMatrix;
|
||||
attribute vec3 a_position;
|
||||
varying vec3 v_position;
|
||||
attribute vec3 a_normal;
|
||||
varying vec3 v_normal;
|
||||
attribute vec2 a_texcoord0;
|
||||
varying vec2 v_texcoord0;
|
||||
void main(void) {
|
||||
vec4 pos = u_modelViewMatrix * vec4(a_position,1.0);
|
||||
v_position = pos.xyz;
|
||||
gl_Position = u_projectionMatrix * pos;
|
||||
v_normal = u_normalMatrix * a_normal;
|
||||
v_texcoord0 = a_texcoord0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue