| 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
 | /* -*- 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>
 * Copyright (C) 2012-2021 MATE Developers
 *
 * 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>
#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_display (GdkDisplay *display)
{
	GdkVisual *visual;
#ifdef HAVE_LIBGL
	Display   *xdisplay;
	GdkScreen *screen;
	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 (display != NULL, NULL);
	xdisplay = GDK_DISPLAY_XDISPLAY (display);
	screen = gdk_display_get_default_screen (display);
	screen_num = GDK_SCREEN_XNUMBER (screen);
	gdk_x11_display_error_trap_push (display);
	visual = NULL;
	for (i = 0; i < G_N_ELEMENTS (attrs); i++)
	{
		XVisualInfo *vi;
		vi = glXChooseVisual (xdisplay, screen_num, attrs [i]);
		if (vi != NULL)
		{
			VisualID   vid;
			vid = XVisualIDFromVisual (vi->visual);
			visual = gdk_x11_screen_lookup_visual (screen, vid);
			XFree (vi);
			if (visual != NULL)
			{
				break;
			}
		}
	}
	gdk_x11_display_error_trap_pop_ignored (display);
#else
	visual = NULL;
#endif /* HAVE_LIBGL */
	return visual;
}
 |