/usr/include/wx-2.8/wx/ogl/ogl.h is in wx2.8-headers 2.8.12.1-6ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | /////////////////////////////////////////////////////////////////////////////
// Name: ogl.h
// Purpose: OGL main include
// Author: Julian Smart
// Modified by:
// Created: 12/07/98
// RCS-ID: $Id: ogl.h 27708 2004-06-09 16:42:34Z ABX $
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _OGL_OGL_H_
#define _OGL_OGL_H_
#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"
// TODO: replace with wxModule implementation
extern WXDLLIMPEXP_OGL void wxOGLInitialize();
extern WXDLLIMPEXP_OGL void wxOGLCleanUp();
#endif
// _OGL_OGL_H_
|