2005-04-15 05:41:28 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2005 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.
|
|
|
|
*/
|
2002-07-16 06:18:47 +08:00
|
|
|
|
|
|
|
#ifndef OSG_UBYTE4
|
2002-08-17 15:34:11 +08:00
|
|
|
#define OSG_UBYTE4 1
|
2002-07-16 06:18:47 +08:00
|
|
|
|
2005-07-15 22:41:19 +08:00
|
|
|
#include <osg/Vec4ub>
|
2002-07-16 06:18:47 +08:00
|
|
|
|
|
|
|
namespace osg {
|
|
|
|
|
2005-07-15 22:41:19 +08:00
|
|
|
#ifdef USE_DEPRECATED_API
|
|
|
|
typedef UByte4 Vec4ub;
|
|
|
|
#endif
|
2002-07-16 06:18:47 +08:00
|
|
|
|
|
|
|
} // end of namespace osg
|
|
|
|
|
|
|
|
#endif
|