|
Revision 13041, 1.4 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/TexEnvFilter> |
|---|
| 15 | #include <osg/State> |
|---|
| 16 | #include <osg/Notify> |
|---|
| 17 | |
|---|
| 18 | using namespace osg; |
|---|
| 19 | |
|---|
| 20 | TexEnvFilter::TexEnvFilter(float lodBias) : |
|---|
| 21 | _lodBias(lodBias) |
|---|
| 22 | { |
|---|
| 23 | } |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | TexEnvFilter::~TexEnvFilter() |
|---|
| 27 | { |
|---|
| 28 | } |
|---|
| 29 | |
|---|
| 30 | void TexEnvFilter::apply(State& state) const |
|---|
| 31 | { |
|---|
| 32 | #ifdef OSG_GL_FIXED_FUNCTION_AVAILABLE |
|---|
| 33 | |
|---|
| 34 | static float glVersion = asciiToFloat( (const char *)glGetString( GL_VERSION ) ); |
|---|
| 35 | static bool s_isTexLodBias = glVersion>=1.4 || isGLExtensionSupported(state.getContextID(),"GL_EXT_texture_lod_bias"); |
|---|
| 36 | |
|---|
| 37 | if (s_isTexLodBias) |
|---|
| 38 | { |
|---|
| 39 | glTexEnvf(GL_TEXTURE_FILTER_CONTROL_EXT, GL_TEXTURE_LOD_BIAS_EXT, _lodBias); |
|---|
| 40 | } |
|---|
| 41 | #else |
|---|
| 42 | OSG_NOTICE<<"Warning: TexEnvFilter::apply(State&) - not supported."<<std::endl; |
|---|
| 43 | #endif |
|---|
| 44 | } |
|---|