repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
canvas
/
webgl
/
resources
/
vertexShader.vert
blob
9ef2632f958aa73455084bfb00090333005622e5
1
attribute vec4 a_vertex;
2
attribute vec3 a_normal;
3
4
uniform mat4 u_modelViewProjMatrix;
5
6
varying vec3 v_normal;
7
8
void main()
9
{
10
v_normal = a_normal;
11
gl_Position = u_modelViewProjMatrix * a_vertex;
12
}