File: gst-gl-bumper.vert

package info (click to toggle)
piglit 0~git20180515-62ef6b0db-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 102,084 kB
  • sloc: ansic: 244,201; xml: 47,485; python: 28,308; lisp: 19,320; cpp: 10,678; sh: 301; makefile: 33; pascal: 5
file content (57 lines) | stat: -rw-r--r-- 1,923 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// [config]
// expect_result: pass
// glsl_version: 1.10
//
// [end config]

/*
 * GStreamer
 * Copyright (C) 2008 Cyril Comparon <cyril.comparon@gmail.com>
 * Copyright (C) 2008 Julien Isorce <julien.isorce@gmail.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

attribute vec3 aTangent;

varying vec3 vNormal;
varying vec3 vTangent;
varying vec3 vVertexToLight0;
varying vec3 vVertexToLight1;

void main()
{
  // transform the vertex
  gl_Position = gl_ProjectionMatrix * gl_ModelViewMatrix * gl_Vertex;

  // transform the normal and the tangent to scene coords
  vNormal = normalize(gl_NormalMatrix * gl_Normal);
  vTangent = normalize(gl_NormalMatrix * aTangent);

  // transforming the vertex position to modelview-space
  //const vec4 vertexInSceneCoords = gl_ModelViewMatrix * gl_Vertex;

  // calculate the vector from the vertex position to the light position
  vVertexToLight0 = normalize(gl_LightSource[0].position).xyz;
  vVertexToLight1 = normalize(gl_LightSource[1].position).xyz;

  // transit vertex color
  gl_FrontColor = gl_BackColor = gl_Color;

  // use the two first sets of texture coordinates in the fragment shader
  gl_TexCoord[0] = gl_MultiTexCoord0;
  gl_TexCoord[1] = gl_MultiTexCoord1;
}