mesa/progs/glsl/CH11-toyball.vert

25 lines
643 B
GLSL
Raw Normal View History

//
// Fragment shader for procedurally generated toy ball
//
// Author: Bill Licea-Kane
//
// Copyright (c) 2002-2003 ATI Research
//
// See ATI-License.txt for license information
//
varying vec4 ECposition; // surface position in eye coordinates
varying vec4 ECballCenter; // ball center in eye coordinates
uniform vec4 BallCenter; // ball center in modelling coordinates
void main()
{
//orig: ECposition = gl_ModelViewMatrix * gl_Vertex;
2007-02-26 00:24:40 +00:00
ECposition = gl_TextureMatrix[0] * gl_Vertex;
ECposition = gl_ModelViewMatrix * ECposition;
2007-02-26 00:24:40 +00:00
ECballCenter = gl_ModelViewMatrix * BallCenter;
gl_Position = ftransform();
2007-02-02 20:54:24 +00:00
}