2006-07-18 23:21:48 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2004-03-03 06:36:11 +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.
|
|
|
|
*/
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2004-03-03 06:36:11 +08:00
|
|
|
#include <osg/GLExtensions>
|
|
|
|
#include <osg/GL>
|
|
|
|
#include <osg/PointSprite>
|
2006-11-14 20:29:54 +08:00
|
|
|
#include <osg/Point>
|
2005-09-19 23:28:31 +08:00
|
|
|
#include <osg/State>
|
|
|
|
#include <osg/buffered_value>
|
2006-02-22 22:31:13 +08:00
|
|
|
#include <osg/Notify>
|
2004-03-03 06:36:11 +08:00
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
2006-11-14 20:29:54 +08:00
|
|
|
PointSprite::PointSprite()
|
|
|
|
: _coordOriginMode(UPPER_LEFT)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PointSprite::~PointSprite()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2004-03-03 06:36:11 +08:00
|
|
|
int PointSprite::compare(const StateAttribute& sa) const
|
|
|
|
{
|
2006-11-14 20:29:54 +08:00
|
|
|
COMPARE_StateAttribute_Types(PointSprite,sa)
|
|
|
|
|
|
|
|
COMPARE_StateAttribute_Parameter(_coordOriginMode)
|
2004-08-02 21:57:47 +08:00
|
|
|
|
2010-10-01 00:57:02 +08:00
|
|
|
return 0; // passed all the above comparison macros, must be equal.
|
2004-03-03 06:36:11 +08:00
|
|
|
}
|
|
|
|
|
2006-02-22 22:31:13 +08:00
|
|
|
|
2006-02-23 03:14:01 +08:00
|
|
|
bool PointSprite::checkValidityOfAssociatedModes(osg::State& state) const
|
2006-02-22 22:31:13 +08:00
|
|
|
{
|
2014-12-10 18:38:12 +08:00
|
|
|
const GLExtensions* extensions = state.get<GLExtensions>();
|
2014-12-09 22:57:25 +08:00
|
|
|
bool modeValid = extensions->isPointSpriteSupported;
|
2006-02-22 22:31:13 +08:00
|
|
|
|
2013-10-01 17:05:18 +08:00
|
|
|
#if defined( OSG_GLES1_AVAILABLE ) //point sprites don't exist on es 2.0
|
2013-09-09 22:58:25 +08:00
|
|
|
state.setModeValidity(GL_POINT_SPRITE_OES, modeValid);
|
|
|
|
#else
|
|
|
|
state.setModeValidity(GL_POINT_SPRITE_ARB, modeValid);
|
|
|
|
#endif
|
2014-12-09 22:57:25 +08:00
|
|
|
|
2006-02-22 22:31:13 +08:00
|
|
|
return modeValid;
|
|
|
|
}
|
|
|
|
|
2005-09-19 23:28:31 +08:00
|
|
|
void PointSprite::apply(osg::State& state) const
|
2004-03-03 06:36:11 +08:00
|
|
|
{
|
2014-12-10 18:38:12 +08:00
|
|
|
const GLExtensions* extensions = state.get<GLExtensions>();
|
2009-11-11 01:01:08 +08:00
|
|
|
#if defined( OSG_GL3_AVAILABLE )
|
2014-12-09 22:57:25 +08:00
|
|
|
|
|
|
|
extensions->glPointParameteri(GL_POINT_SPRITE_COORD_ORIGIN, _coordOriginMode);
|
2013-09-09 22:58:25 +08:00
|
|
|
|
2013-10-01 17:05:18 +08:00
|
|
|
#elif defined( OSG_GLES1_AVAILABLE ) //point sprites don't exist on es 2.0
|
2014-12-09 22:57:25 +08:00
|
|
|
|
|
|
|
if (!extensions->isPointSpriteSupported) return;
|
|
|
|
|
2013-09-09 22:58:25 +08:00
|
|
|
glTexEnvi(GL_POINT_SPRITE_OES, GL_COORD_REPLACE_OES, 1);
|
2014-12-09 22:57:25 +08:00
|
|
|
|
2009-11-11 01:01:08 +08:00
|
|
|
#elif defined( OSG_GL_FIXED_FUNCTION_AVAILABLE )
|
2013-09-09 22:58:25 +08:00
|
|
|
|
2014-12-09 22:57:25 +08:00
|
|
|
if (!extensions->isPointSpriteSupported) return;
|
2005-09-19 23:28:31 +08:00
|
|
|
|
2004-03-03 06:36:11 +08:00
|
|
|
glTexEnvi(GL_POINT_SPRITE_ARB, GL_COORD_REPLACE_ARB, 1);
|
2006-11-14 20:29:54 +08:00
|
|
|
|
2014-12-09 22:57:25 +08:00
|
|
|
if (extensions->isPointSpriteCoordOriginSupported)
|
|
|
|
extensions->glPointParameteri(GL_POINT_SPRITE_COORD_ORIGIN, _coordOriginMode);
|
2013-09-09 22:58:25 +08:00
|
|
|
|
2009-10-23 21:19:57 +08:00
|
|
|
#else
|
2010-05-28 23:47:52 +08:00
|
|
|
OSG_NOTICE<<"Warning: PointSprite::apply(State&) - not supported."<<std::endl;
|
2013-09-09 22:58:25 +08:00
|
|
|
|
2009-10-23 21:19:57 +08:00
|
|
|
#endif
|
2004-03-03 06:36:11 +08:00
|
|
|
}
|