From Alok Priyadarshi, support for statically linking to GLES2.lib

This commit is contained in:
Robert Osfield
2010-05-14 19:47:50 +00:00
parent 554adfc8e6
commit a0eb7de060
5 changed files with 249 additions and 8 deletions

33
src/osg/GLStaticLibrary.h Normal file
View File

@@ -0,0 +1,33 @@
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
* Copyright (C) 2003-2005 3Dlabs Inc. Ltd.
* Copyright (C) 2004-2005 Nathan Cournia
* Copyright (C) 2007 Art Tevs
* Copyright (C) 2008 Zebra Imaging
*
* 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: src/osg/GLStaticLibrary.h
* author: Alok Priyadarshi 2010-04-27
*/
#ifndef OSG_GLSTATICLIBRARY
#define OSG_GLSTATICLIBRARY 1
namespace osg {
class GLStaticLibrary
{
public:
static void* getProcAddress(const char* procName);
};
}
#endif