2006-07-18 23:21:48 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2007-07-28 18:44:03 +08:00
|
|
|
#include <string.h>
|
|
|
|
|
2001-10-22 05:27:40 +08:00
|
|
|
#include <osg/GL>
|
|
|
|
#include <osg/PolygonOffset>
|
2006-07-14 22:08:33 +08:00
|
|
|
#include <osg/Notify>
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
2006-07-14 22:08:33 +08:00
|
|
|
static float s_FactorMultipler = 1.0f;
|
2006-07-17 19:43:26 +08:00
|
|
|
static float s_UnitsMultipler = 1.0f;
|
2006-07-14 22:08:33 +08:00
|
|
|
static bool s_MultiplerSet = false;
|
|
|
|
|
|
|
|
void PolygonOffset::setFactorMultiplier(float multiplier)
|
|
|
|
{
|
|
|
|
s_MultiplerSet = true;
|
|
|
|
s_FactorMultipler = multiplier;
|
|
|
|
}
|
|
|
|
|
|
|
|
float PolygonOffset::getFactorMultiplier()
|
|
|
|
{
|
|
|
|
return s_FactorMultipler;
|
|
|
|
}
|
|
|
|
|
2006-07-17 19:43:26 +08:00
|
|
|
void PolygonOffset::setUnitsMultiplier(float multiplier)
|
2006-07-14 22:08:33 +08:00
|
|
|
{
|
|
|
|
s_MultiplerSet = true;
|
2006-07-17 19:43:26 +08:00
|
|
|
s_UnitsMultipler = multiplier;
|
2006-07-14 22:08:33 +08:00
|
|
|
}
|
|
|
|
|
2006-07-17 19:43:26 +08:00
|
|
|
float PolygonOffset::getUnitsMultiplier()
|
2006-07-14 22:08:33 +08:00
|
|
|
{
|
2006-07-17 19:43:26 +08:00
|
|
|
return s_UnitsMultipler;
|
2006-07-14 22:08:33 +08:00
|
|
|
}
|
|
|
|
|
2006-07-18 20:24:04 +08:00
|
|
|
bool PolygonOffset::areFactorAndUnitsMultipliersSet()
|
2006-07-14 22:08:33 +08:00
|
|
|
{
|
|
|
|
return s_MultiplerSet;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-17 19:43:26 +08:00
|
|
|
void PolygonOffset::setFactorAndUnitsMultipliersUsingBestGuessForDriver()
|
2006-07-14 22:08:33 +08:00
|
|
|
{
|
|
|
|
s_MultiplerSet = true;
|
|
|
|
// osg::notify(osg::NOTICE)<<"PolygonOffset::setFactorAndUnitMultipliersUsingBestGuessForDriver()"<<std::endl;
|
2006-07-14 22:38:55 +08:00
|
|
|
|
|
|
|
const GLubyte* renderer = glGetString(GL_RENDERER);
|
|
|
|
if (renderer)
|
|
|
|
{
|
|
|
|
if ((strstr((const char*)renderer,"Radeon")!=0) ||
|
2007-12-11 01:30:18 +08:00
|
|
|
(strstr((const char*)renderer,"RADEON")!=0) ||
|
|
|
|
(strstr((const char*)renderer,"ALL-IN-WONDER")!=0))
|
2006-07-14 22:38:55 +08:00
|
|
|
{
|
2006-07-17 18:24:31 +08:00
|
|
|
setFactorMultiplier(1.0f);
|
2006-07-17 19:43:26 +08:00
|
|
|
setUnitsMultiplier(128.0f);
|
|
|
|
osg::notify(osg::INFO)<<"PolygonOffset::setFactorAndUnitsMultipliersUsingBestGuessForDriver() apply ATI workaround."<<std::endl;
|
2006-07-14 22:38:55 +08:00
|
|
|
}
|
|
|
|
}
|
2006-07-14 22:08:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-02 02:42:38 +08:00
|
|
|
PolygonOffset::PolygonOffset():
|
|
|
|
_factor(0.0f),
|
|
|
|
_units(0.0f)
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2003-04-02 02:42:38 +08:00
|
|
|
PolygonOffset::PolygonOffset(float factor, float units):
|
|
|
|
_factor(factor),
|
|
|
|
_units(units)
|
|
|
|
{
|
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
PolygonOffset::~PolygonOffset()
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
void PolygonOffset::apply(State&) const
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
2006-07-17 19:43:26 +08:00
|
|
|
if (!s_MultiplerSet) setFactorAndUnitsMultipliersUsingBestGuessForDriver();
|
2006-07-14 22:08:33 +08:00
|
|
|
|
|
|
|
glPolygonOffset(_factor * s_FactorMultipler,
|
2006-07-17 19:43:26 +08:00
|
|
|
_units * s_UnitsMultipler);
|
2001-01-11 00:32:10 +08:00
|
|
|
}
|