~ubuntu-branches/ubuntu/edgy/pouetchess/edgy-updates

« back to all changes in this revision

Viewing changes to src/utils.h

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc (mr_pouit)
  • Date: 2006-07-15 15:45:57 UTC
  • Revision ID: james.westby@ubuntu.com-20060715154557-3paxq02hx4od0wm4
Tags: upstream-0.2.0
ImportĀ upstreamĀ versionĀ 0.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2006 by Frederic MARTIN                                 *
 
3
 *   martin-frederic@users.sourceforge.net                                 *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
19
 ***************************************************************************/
 
20
 
 
21
#include "texture.h"
 
22
 
 
23
 
 
24
/* opengl related functions */
 
25
void go_2D();
 
26
void exit_2D();
 
27
void draw_rectangle(int X, int Y,int width,int height);
 
28
void draw_rectangle_2(int x1, int y1,int x2,int y2);
 
29
void draw_filled_rectangle(int x1, int y1,int x2,int y2);
 
30
void draw_image(int X, int Y,int width,int height, CBasicTexture* image);
 
31
void clearScreen();
 
32
void init_fade_in();
 
33
void init_fade_out();
 
34
bool gl_fade_in(GLfloat speed);
 
35
bool gl_fade_out(GLfloat speed);
 
36
 
 
37
 
 
38
/* useful macros */
 
39
#define SAFE_DELETE(p)                  { if(p) { delete (p);     (p)=NULL; } }
 
40
#define SAFE_DELETE_ARRAY(p)    { if(p) { delete[] (p);   (p)=NULL; } }