#1
|
|||
|
|||
Matrix Inputs for Vertex Shader
In a vertex shader using Vizard, I understand that this GLSL pattern currently works fine:
Code:
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex; Code:
uniform mat4 projMat; uniform mat4 viewMat; uniform mat4 modelMat; layout (location = 0) in vec3 position; void main() { gl_Position = projMat * viewMat * modelMat * vec4(position, 1.0); } |
Tags |
glsl, shader |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Shader problems | Strannix | Vizard | 0 | 10-06-2016 02:50 PM |
Shader Trouble | leoaered | Vizard | 8 | 10-03-2012 12:42 PM |
Projection Matrix (onto oblique near plane) | andrewjworz | Vizard | 1 | 07-13-2012 09:10 AM |
Multiple Textures for Diffuse and Specularity Shader Issue | shivanangel | Vizard | 1 | 05-11-2009 10:44 AM |
Specular Shader Issue | shivanangel | Vizard | 2 | 05-06-2009 11:08 AM |