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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
*
* Copyright (C) 2006 William Jon McCann <mccann@jhu.edu>
* Copyright (C) 1999, 2000, 2003 Jamie Zawinski <jwz@jwz.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301, USA.
*
*/
#include "config.h"
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <gdk/gdk.h>
#include <gdk/gdkx.h>
#include <gtk/gtk.h>
#ifdef HAVE_LIBGL
#include <GL/gl.h>
#include <GL/glx.h>
#endif /* HAVE_GL */
#include "gs-visual-gl.h"
#include "gs-debug.h"
GdkVisual *
gs_visual_gl_get_best_for_screen (GdkScreen *screen)
{
GdkVisual *visual;
#ifdef HAVE_LIBGL
GdkDisplay *display;
int screen_num;
int i;
# define R GLX_RED_SIZE
# define G GLX_GREEN_SIZE
# define B GLX_BLUE_SIZE
# define D GLX_DEPTH_SIZE
# define I GLX_BUFFER_SIZE
# define DB GLX_DOUBLEBUFFER
# define ST GLX_STENCIL_SIZE
static int attrs [][20] =
{
{ GLX_RGBA, R, 8, G, 8, B, 8, D, 8, DB, ST,1, 0 }, /* rgb double, stencil */
{ GLX_RGBA, R, 4, G, 4, B, 4, D, 4, DB, ST,1, 0 },
{ GLX_RGBA, R, 2, G, 2, B, 2, D, 2, DB, ST,1, 0 },
{ GLX_RGBA, R, 8, G, 8, B, 8, D, 8, DB, 0 }, /* rgb double */
{ GLX_RGBA, R, 4, G, 4, B, 4, D, 4, DB, 0 },
{ GLX_RGBA, R, 2, G, 2, B, 2, D, 2, DB, 0 },
{ GLX_RGBA, R, 8, G, 8, B, 8, D, 8, 0 }, /* rgb single */
{ GLX_RGBA, R, 4, G, 4, B, 4, D, 4, 0 },
{ GLX_RGBA, R, 2, G, 2, B, 2, D, 2, 0 },
{ I, 8, D, 8, DB, 0 }, /* cmap double */
{ I, 4, D, 4, DB, 0 },
{ I, 8, D, 8, 0 }, /* cmap single */
{ I, 4, D, 4, 0 },
{ GLX_RGBA, R, 1, G, 1, B, 1, D, 1, 0 } /* monochrome */
};
g_return_val_if_fail (screen != NULL, NULL);
display = gdk_screen_get_display (screen);
screen_num = gdk_screen_get_number (screen);
gdk_error_trap_push ();
visual = NULL;
for (i = 0; i < G_N_ELEMENTS (attrs); i++)
{
XVisualInfo *vi;
vi = glXChooseVisual (GDK_DISPLAY_XDISPLAY (display), screen_num, attrs [i]);
if (vi != NULL)
{
VisualID vid;
vid = XVisualIDFromVisual (vi->visual);
visual = gdkx_visual_get (vid);
XFree (vi);
if (visual != NULL)
{
break;
}
}
}
gdk_display_sync (display);
gdk_error_trap_pop ();
#else
visual = NULL;
#endif /* HAVE_LIBGL */
return visual;
}
|