/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 Robert Osfield * Copyright (C) 2003 3Dlabs Inc. Ltd. * * This application is open source and may be redistributed and/or modified * freely and without restriction, both in commericial and non commericial * applications, as long as this copyright notice is maintained. * * This application 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. */ /* file: include/osgGL2/UniformValue * author: Mike Weiblen 2003-12-28 * * See http://www.3dlabs.com/opengl2/ for more information regarding * the OpenGL Shading Language. */ #ifndef OSGGL2_UNIFORMVALUE #define OSGGL2_UNIFORMVALUE 1 #include #include #include #include #include #include #include namespace osgGL2 { /////////////////////////////////////////////////////////////////////////// /** osgGL2::UniformValue is for internal use by osgGL2::ProgramObject. * UniformValue is an abstract class to encapsulate a new value for a glUniform. * osgGL2::ProgramObject.setUniform() constructs and sends a UniformValue * to all its PerContextProgramObjects (PCPOs) to set the value of a * glUniform. * The value contained in each UniformValue value is propagated to the * glProgramObjects during the next osgGL2::ProgramObject.apply(). */ class UniformValue : public osg::Referenced { public: virtual void apply( Extensions *ext, const GLhandleARB progObj ) const = 0; protected: UniformValue( const char* uniformName ) : _name( uniformName ) {}; virtual ~UniformValue() {}; UniformValue(); UniformValue(const UniformValue&); UniformValue& operator=(const UniformValue&); int getLocation( Extensions *ext, const GLhandleARB progObj ) const; std::string _name; }; typedef std::vector< osg::ref_ptr > UniformValueList; /////////////////////////////////////////////////////////////////////////// /** UniformValueTemplate creates the concrete classes for each of the * uniform value types */ template class UniformValueTemplate: public UniformValue { public: UniformValueTemplate( const char* uniformName, T value ) : UniformValue( uniformName ), _value( value ) {} virtual void apply( Extensions *ext, const GLhandleARB progObj ) const; protected: UniformValueTemplate(); const T _value; }; typedef UniformValueTemplate UniformValue_int; typedef UniformValueTemplate UniformValue_float; typedef UniformValueTemplate UniformValue_Vec2; typedef UniformValueTemplate UniformValue_Vec3; typedef UniformValueTemplate UniformValue_Vec4; } #endif /*EOF*/