Updates to Stereo code.

This commit is contained in:
Robert Osfield
2001-12-19 15:20:29 +00:00
parent 0721f0a818
commit 73e598f3ff
2 changed files with 16 additions and 8 deletions

View File

@@ -17,10 +17,10 @@ void ColorMatrix::apply(State&) const
{
// std::cout<<"applying matrix"<<_matrix<<std::endl;
static bool s_ARB_imaging = isGLExtensionSupported("GL_ARB_imaging");
if (s_ARB_imaging)
{
glMatrixMode( GL_COLOR );
glLoadMatrixf( _matrix.ptr() );
glMatrixMode( GL_MODELVIEW );
}
if (s_ARB_imaging)
{
glMatrixMode( GL_COLOR );
glLoadMatrixf( _matrix.ptr() );
glMatrixMode( GL_MODELVIEW );
}
}