~ubuntu-branches/ubuntu/precise/rss-glx/precise

« back to all changes in this revision

Viewing changes to src/matrixview_textures.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2009-06-03 18:41:32 UTC
  • mfrom: (1.1.5 upstream) (2.2.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090603184132-znjy66pq9xom7hac
Tags: 0.9.0-2ubuntu1
* Merge from debian unstable, remaining changes:
  - Drop dependency on openal. It is not enabled by default anyway, and
    allows openal to migrate to universe.
  - src/skyrocket.{cpp,xml}: Disable sound by default.
  - Add --disable-sound configure flag to debian/rules, as we don't keep 
    the dependencies on openal nor freeglut (both universe packages).
* Dropped changes, merged upstream:
  - other_src/Makefile.am: fix the upstream build rules to actually use
    the ImageMagick CFLAGS returned by pkg-config.
  - Move the unconditional ImageMagick check up in configure.in so that
    our first PKG_CHECK_MODULES() call isn't hidden behind a shell
    conditional.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * Copyright (C) 2003 Alex Zolotov
 
3
 * Mucked with by Tugrul Galatali <tugrul@galatali.com>
 
4
 *
 
5
 * MatrixView is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License version 2 as 
 
7
 * published by the Free Software Foundation.
 
8
 *
 
9
 * MatrixView is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 */
 
18
 
 
19
#ifndef MATRIXVIEW_TEXTURES_H
 
20
#define MATRIXVIEW_TEXTURES_H
 
21
 
 
22
extern unsigned char *cfont;
 
23
extern unsigned int cfont_size;
 
24
extern unsigned int cfont_compressedsize;
 
25
extern unsigned char *cpics;
 
26
extern unsigned int cpics_size;
 
27
extern unsigned int cpics_compressedsize;
 
28
 
 
29
#endif