Sha256: 1ef7dc7b3bf8703f256c1ea8c0113f5b4ecfede2f5620eb0aeedfbc5cd410565
Contents?: true
Size: 398 Bytes
Versions: 17
Compression:
Stored size: 398 Bytes
Contents
shared attribute vec2 VERTEX_TEXCOORDS; shared attribute vec3 VERTEX_NORMAL; shared attribute vec4 VERTEX_POSITION, VERTEX_COLOR, VERTEX_TANGENT; void main(void) { vBaseColor = VERTEX_COLOR; vNormal = nMatrix * VERTEX_NORMAL; vTexCoords = VERTEX_TEXCOORDS; vSurfacePos = (mvMatrix * VERTEX_POSITION).xyz; gl_Position = pMatrix * mvMatrix * VERTEX_POSITION; }
Version data entries
17 entries across 17 versions & 1 rubygems