mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-11-25 13:21:08 +00:00
866aa787cf
Update to ioquake3 revision 3306 from 1951 of the ioq3 Github repo via subversion. Over 4 years of changes.
16 lines
437 B
GLSL
16 lines
437 B
GLSL
attribute vec4 attr_Position;
|
|
attribute vec4 attr_TexCoord0;
|
|
|
|
uniform vec4 u_ViewInfo; // zfar / znear, zfar, 1/width, 1/height
|
|
|
|
varying vec2 var_ScreenTex;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = attr_Position;
|
|
vec2 wh = vec2(1.0) / u_ViewInfo.zw - vec2(1.0);
|
|
var_ScreenTex = (floor(attr_TexCoord0.xy * wh) + vec2(0.5)) * u_ViewInfo.zw;
|
|
|
|
//vec2 screenCoords = gl_Position.xy / gl_Position.w;
|
|
//var_ScreenTex = screenCoords * 0.5 + 0.5;
|
|
}
|