文件名称:vshader.glsl
-
所属分类:
- 标签属性:
- 上传时间:2016-03-01
-
文件大小:900byte
-
已下载:0次
-
提 供 者:
-
相关连接:无下载说明:别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容来自于网络,使用问题请自行百度
#version 130
in vec4 vPosition
in vec4 vColor
out vec4 color
uniform int xsize
uniform int ysize
void main()
{
mat4 scale = mat4(2.0/xsize, 0.0, 0.0, 0.0,
0.0, 2.0/ysize, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
0.0, 0.0, 0.0, 1.0 )
// First, center the image by translating each vertex by half of the original window size
// Then, multiply by the scale matrix to maintain size after the window is reshaped
vec4 newPos = vPosition + vec4(-200, -360, 0, 0)
gl_Position = scale * newPos
color = vColor
} -#version 130
in vec4 vPosition
in vec4 vColor
out vec4 color
uniform int xsize
uniform int ysize
void main()
{
mat4 scale = mat4(2.0/xsize, 0.0, 0.0, 0.0,
0.0, 2.0/ysize, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
0.0, 0.0, 0.0, 1.0 )
// First, center the image by translating each vertex by half of the original window size
// Then, multiply by the scale matrix to maintain size after the window is reshaped
vec4 newPos = vPosition + vec4(-200, -360, 0, 0)
gl_Position = scale * newPos
color = vColor
}
in vec4 vPosition
in vec4 vColor
out vec4 color
uniform int xsize
uniform int ysize
void main()
{
mat4 scale = mat4(2.0/xsize, 0.0, 0.0, 0.0,
0.0, 2.0/ysize, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
0.0, 0.0, 0.0, 1.0 )
// First, center the image by translating each vertex by half of the original window size
// Then, multiply by the scale matrix to maintain size after the window is reshaped
vec4 newPos = vPosition + vec4(-200, -360, 0, 0)
gl_Position = scale * newPos
color = vColor
} -#version 130
in vec4 vPosition
in vec4 vColor
out vec4 color
uniform int xsize
uniform int ysize
void main()
{
mat4 scale = mat4(2.0/xsize, 0.0, 0.0, 0.0,
0.0, 2.0/ysize, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
0.0, 0.0, 0.0, 1.0 )
// First, center the image by translating each vertex by half of the original window size
// Then, multiply by the scale matrix to maintain size after the window is reshaped
vec4 newPos = vPosition + vec4(-200, -360, 0, 0)
gl_Position = scale * newPos
color = vColor
}
(系统自动生成,下载前可以参看下载内容)
下载文件列表
vshader.glsl
__MACOSX/
__MACOSX/._vshader.glsl
__MACOSX/
__MACOSX/._vshader.glsl
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.