~ubuntu-branches/ubuntu/trusty/chromium/trusty

« back to all changes in this revision

Viewing changes to src/GroundMetalSegment.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Paul Wise
  • Date: 2009-02-19 14:01:45 UTC
  • mfrom: (0.1.4 upstream) (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090219140145-f5sn95pah8s5ddwa
Tags: 0.9.13.3-1
* New upstream release
  - Using the CDROM for music is off by default and
    the manual page documents the use_cdrom option (Closes: #492446)
  - bindir/datadir customisations were removed so use ./configure args
* Improve the descriptions for the chromium & chromium-data packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 * it and/or use it and/or modify it under the terms of the 
6
6
 * "Artistic License" 
7
7
 */
 
8
 
 
9
#ifdef HAVE_CONFIG_H
 
10
#include <config.h>
 
11
#endif
 
12
 
8
13
#include "GroundMetalSegment.h"
9
14
 
10
15
#include <cmath>
11
16
 
12
17
#include "compatibility.h"
 
18
 
 
19
#ifdef HAVE_APPLE_OPENGL_FRAMEWORK
 
20
#include <OpenGL/gl.h>
 
21
#else
13
22
#include <GL/gl.h>
 
23
#endif
14
24
//#define GL_EXT_
15
25
//#include <GL/glext.h>
16
26