OpenSceneGraph/examples/osgmultiviewOVR/leia.vert

27 lines
490 B
GLSL
Raw Normal View History

#version 330
#extension GL_OVR_multiview2 : enable
#define NUM_VIEWS 4
layout(num_views = NUM_VIEWS) in;
uniform mat4 osg_ModelViewMatrix;
uniform mat4 osg_ProjectionMatrices[NUM_VIEWS];
in vec4 osg_Vertex;
in vec4 osg_Color;
in vec4 osg_MultiTexCoord0;
out vec4 color;
out vec2 texcoord;
void main(void)
{
mat4 mvp = osg_ProjectionMatrices[gl_ViewID_OVR] * osg_ModelViewMatrix;
color = osg_Color;
texcoord = osg_MultiTexCoord0.xy;
gl_Position = mvp * osg_Vertex;
}