2000-03-03 06:25:10 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: ogl.h
|
|
|
|
// Purpose: OGL main include
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 12/07/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
2004-06-09 12:42:34 -04:00
|
|
|
// Licence: wxWindows licence
|
2000-03-03 06:25:10 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _OGL_OGL_H_
|
|
|
|
#define _OGL_OGL_H_
|
|
|
|
|
2003-07-25 17:20:57 -04:00
|
|
|
#ifdef WXMAKINGDLL_OGL
|
|
|
|
#define WXDLLIMPEXP_OGL WXEXPORT
|
|
|
|
#elif defined(WXUSINGDLL)
|
|
|
|
#define WXDLLIMPEXP_OGL WXIMPORT
|
|
|
|
#else // not making nor using DLL
|
|
|
|
#define WXDLLIMPEXP_OGL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include "wx/ogl/basic.h" // Basic shapes
|
|
|
|
#include "wx/ogl/basicp.h"
|
|
|
|
#include "wx/ogl/lines.h" // Lines and splines
|
|
|
|
#include "wx/ogl/linesp.h"
|
|
|
|
#include "wx/ogl/divided.h" // Vertically-divided rectangle
|
|
|
|
#include "wx/ogl/composit.h" // Composite images
|
|
|
|
#include "wx/ogl/canvas.h" // wxShapeCanvas for displaying objects
|
|
|
|
#include "wx/ogl/ogldiag.h" // wxDiagram
|
|
|
|
|
|
|
|
#include "wx/ogl/bmpshape.h"
|
|
|
|
#include "wx/ogl/constrnt.h"
|
|
|
|
#include "wx/ogl/drawn.h"
|
|
|
|
#include "wx/ogl/drawnp.h"
|
|
|
|
#include "wx/ogl/mfutils.h"
|
|
|
|
#include "wx/ogl/misc.h"
|
2000-03-03 06:25:10 -05:00
|
|
|
|
|
|
|
// TODO: replace with wxModule implementation
|
2003-07-25 17:20:57 -04:00
|
|
|
extern WXDLLIMPEXP_OGL void wxOGLInitialize();
|
|
|
|
extern WXDLLIMPEXP_OGL void wxOGLCleanUp();
|
2000-03-03 06:25:10 -05:00
|
|
|
|
|
|
|
#endif
|
|
|
|
// _OGL_OGL_H_
|