|
Revision 13041, 1.3 kB
(checked in by robert, 14 months ago)
|
|
Ran script to remove trailing spaces and tabs
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | #include <osg/GLExtensions> |
|---|
| 14 | #include <osg/ColorMatrix> |
|---|
| 15 | #include <osg/GL> |
|---|
| 16 | #include <osg/State> |
|---|
| 17 | #include <osg/Notify> |
|---|
| 18 | |
|---|
| 19 | using namespace osg; |
|---|
| 20 | |
|---|
| 21 | ColorMatrix::ColorMatrix() |
|---|
| 22 | { |
|---|
| 23 | } |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | ColorMatrix::~ColorMatrix() |
|---|
| 27 | { |
|---|
| 28 | } |
|---|
| 29 | |
|---|
| 30 | void ColorMatrix::apply(State& state) const |
|---|
| 31 | { |
|---|
| 32 | #if defined(OSG_GL_FIXED_FUNCTION_AVAILABLE) && !defined(OSG_GLES1_AVAILABLE) |
|---|
| 33 | unsigned int contextID = state.getContextID(); |
|---|
| 34 | |
|---|
| 35 | static bool s_ARB_imaging = isGLExtensionSupported(contextID,"GL_ARB_imaging"); |
|---|
| 36 | if (s_ARB_imaging) |
|---|
| 37 | { |
|---|
| 38 | glMatrixMode( GL_COLOR ); |
|---|
| 39 | glLoadMatrix(_matrix.ptr()); |
|---|
| 40 | glMatrixMode( GL_MODELVIEW ); |
|---|
| 41 | } |
|---|
| 42 | #else |
|---|
| 43 | OSG_NOTICE<<"Warning: ColorMatrix::apply(State&) - not supported."<<std::endl; |
|---|
| 44 | #endif |
|---|
| 45 | } |
|---|