Skip to content

Instantly share code, notes, and snippets.

@izumiikezaki
Created March 6, 2019 01:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save izumiikezaki/4eb67b6e619f9f679497922f75471583 to your computer and use it in GitHub Desktop.
Save izumiikezaki/4eb67b6e619f9f679497922f75471583 to your computer and use it in GitHub Desktop.
<script type="x-shader/x-vertex" id="vshader">
varying vec3 vNormal;
varying vec3 pos;
void main()
{
vNormal=normalMatrix * normal;
pos = position;
gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);
}
</script>
<script type="x-shader/x-fragment" id="fshader">
varying vec3 vNormal;
varying vec3 pos;
void main()
{
gl_FragColor = vec4(vNormal, 1.0);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment