Merge branch 'mesa_7_5_branch'
[mesa.git] / src / glut / directfb / globals.c
1 /*
2 * Copyright (C) 2006 Claudio Ciccani <klan@users.sf.net>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library 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 GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 */
19
20 #include "internal.h"
21
22 IDirectFB *dfb = NULL;
23 IDirectFBDisplayLayer *primary = NULL;
24 IDirectFBEventBuffer *events = NULL;
25 IDirectFBInputDevice *keyboard = NULL;
26 IDirectFBInputDevice *mouse = NULL;
27 IDirectFBInputDevice *joystick = NULL;
28
29 GLenum g_display_mode = 0;
30 GLuint g_width = DEFAULT_WIDTH;
31 GLuint g_height = DEFAULT_HEIGHT;
32 GLint g_xpos = 0;
33 GLint g_ypos = 0;
34 GLint g_bpp = 0;
35 GLboolean g_idle = GL_TRUE;
36 __GlutWindow *g_current = NULL;
37 __GlutWindow *g_game = NULL;
38
39
40 void (GLUTCALLBACK *display_func) (void) = 0;
41 void (GLUTCALLBACK *reshape_func) (int width, int height) = 0;
42 void (GLUTCALLBACK *keyboard_func) (unsigned char key, int x, int y) = 0;
43 void (GLUTCALLBACK *mouse_func) (int button, int state, int x, int y) = 0;
44 void (GLUTCALLBACK *motion_func) (int x, int y) = 0;
45 void (GLUTCALLBACK *passive_motion_func) (int x, int y) = 0;
46 void (GLUTCALLBACK *entry_func) (int state) = 0;
47 void (GLUTCALLBACK *visibility_func) (int state) = 0;
48 void (GLUTCALLBACK *idle_func) (void) = 0;
49 void (GLUTCALLBACK *menu_state_func) (int state) = 0;
50 void (GLUTCALLBACK *special_func) (int key, int x, int y) = 0;
51 void (GLUTCALLBACK *spaceball_motion_func) (int x, int y, int z) = 0;
52 void (GLUTCALLBACK *spaceball_rotate_func) (int x, int y, int z) = 0;
53 void (GLUTCALLBACK *spaceball_button_func) (int button, int state) = 0;
54 void (GLUTCALLBACK *button_box_func) (int button, int state) = 0;
55 void (GLUTCALLBACK *dials_func) (int dial, int value) = 0;
56 void (GLUTCALLBACK *tablet_motion_func) (int x, int y) = 0;
57 void (GLUTCALLBACK *tabled_button_func) (int button, int state, int x, int y) = 0;
58 void (GLUTCALLBACK *menu_status_func) (int status, int x, int y) = 0;
59 void (GLUTCALLBACK *overlay_display_func) (void) = 0;
60 void (GLUTCALLBACK *window_status_func) (int state) = 0;
61 void (GLUTCALLBACK *keyboard_up_func) (unsigned char key, int x, int y) = 0;
62 void (GLUTCALLBACK *special_up_func) (int key, int x, int y) = 0;
63 void (GLUTCALLBACK *joystick_func) (unsigned int buttons, int x, int y, int z) = 0;