summaryrefslogtreecommitdiff
path: root/src/glx/clientinfo.c
blob: 6e02be8290ad20c70223abb7df7f5bcad38a6b02 (plain)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
 * Copyright © 2011 Intel Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

#include <string.h>
#include <ctype.h>

#include "glxclient.h"
#include <xcb/glx.h>
#include <X11/Xlib-xcb.h>

void
glxSendClientInfo(struct glx_display *glx_dpy, int screen)
{
   const unsigned ext_length = strlen("GLX_ARB_create_context");
   const unsigned prof_length = strlen("_profile");
   char *gl_extension_string;
   int gl_extension_length;
   xcb_connection_t *c;
   Bool any_screen_has_ARB_create_context = False;
   Bool any_screen_has_ARB_create_context_profile = False;
   unsigned i;
   /* You need GLX_ARB_create_context_profile to get beyond 3.1 anyway */
   static const uint32_t gl_versions[] = {
      2, 1,
      3, 0,
      3, 1,
   };
   /*
    * This is weird, but it matches what NVIDIA does/expects. For big-GL
    * below 3.2 there is no such thing as a "profile", so we name them all
    * with no profile bits. Except we don't name anything lower than 2.1,
    * since GLX_ARB_create_context_profile says:
    *
    *   "Only the highest supported version below 3.0 should be sent, since
    *   OpenGL 2.1 is backwards compatible with all earlier versions."
    *
    * In order to also support GLES below 3.2, we name every possible GLES
    * version with the ES2 bit set, which happens to just mean GLES generally
    * and not a particular major version. 3.2 happens to be a legal version
    * number for both big-GL and GLES, so it gets all three bits set.
    * Everything 3.3 and above is big-GL only so gets the core and compat
    * bits set.
    */
   static const uint32_t gl_versions_profiles[] = {
      1, 0, GLX_CONTEXT_ES2_PROFILE_BIT_EXT,
      1, 1, GLX_CONTEXT_ES2_PROFILE_BIT_EXT,
      2, 0, GLX_CONTEXT_ES2_PROFILE_BIT_EXT,
      2, 1, 0x0,
      3, 0, 0x0,
      3, 0, GLX_CONTEXT_ES2_PROFILE_BIT_EXT,
      3, 1, 0x0,
      3, 1, GLX_CONTEXT_ES2_PROFILE_BIT_EXT,
      3, 2, GLX_CONTEXT_CORE_PROFILE_BIT_ARB |
            GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB |
            GLX_CONTEXT_ES2_PROFILE_BIT_EXT,
      3, 3, GLX_CONTEXT_CORE_PROFILE_BIT_ARB |
            GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB,
      4, 0, GLX_CONTEXT_CORE_PROFILE_BIT_ARB |
            GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB,
      4, 1, GLX_CONTEXT_CORE_PROFILE_BIT_ARB |
            GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB,
      4, 2, GLX_CONTEXT_CORE_PROFILE_BIT_ARB |
            GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB,
      4, 3, GLX_CONTEXT_CORE_PROFILE_BIT_ARB |
            GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB,
      4, 4, GLX_CONTEXT_CORE_PROFILE_BIT_ARB |
            GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB,
      4, 5, GLX_CONTEXT_CORE_PROFILE_BIT_ARB |
            GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB,
      4, 6, GLX_CONTEXT_CORE_PROFILE_BIT_ARB |
            GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB,
   };
   static const char glx_extensions[] =
      "GLX_ARB_create_context GLX_ARB_create_context_profile";

   /* There are three possible flavors of the client info structure that the
    * client could send to the server.  The version sent depends on the
    * combination of GLX versions and extensions supported by the client and
    * the server. This client only supports GLX version >= 1.3.
    *
    * Server supports                  Client sends
    * ----------------------------------------------------------------------
    * GLX version = 1.0                Nothing.
    *
    * GLX version >= 1.1               struct GLXClientInfo
    *
    * GLX version >= 1.4 and
    * GLX_ARB_create_context           struct glXSetClientInfoARB
    *
    * GLX version >= 1.4 and
    * GLX_ARB_create_context_profile   struct glXSetClientInfo2ARB
    *
    * GLX_ARB_create_context and GLX_ARB_create_context_profile use FBConfigs,
    * and these only exist in GLX 1.4 or with GLX_SGIX_fbconfig.  I can't
    * imagine an implementation that supports GLX_SGIX_fbconfig and
    * GLX_ARB_create_context but not GLX 1.4.  Making GLX 1.4 a hard
    * requirement in this case does not seem like a limitation.
    */

   /* Determine whether any screen on the server supports either of the
    * create-context extensions.
    */
   for (i = 0; i < ScreenCount(glx_dpy->dpy); i++) {
      struct glx_screen *src = glx_dpy->screens[i];

      const char *haystack = src->serverGLXexts;
      while (haystack != NULL) {
	 char *match = strstr(haystack, "GLX_ARB_create_context");

	 if (match == NULL)
	    break;

	 match += ext_length;

	 switch (match[0]) {
	 case '\0':
	 case ' ':
	    any_screen_has_ARB_create_context = True;
	    break;

	 case '_':
	    if (strncmp(match, "_profile", prof_length) == 0
		    && (match[prof_length] == '\0'
			|| match[prof_length] == ' ')) {
	       any_screen_has_ARB_create_context_profile = True;
	       match += prof_length;
	    }
	    break;
	 }

	 haystack = match;
      }
   }

   gl_extension_string = __glXGetClientGLExtensionString(screen);
   gl_extension_length = strlen(gl_extension_string) + 1;

   c = XGetXCBConnection(glx_dpy->dpy);

   /* Depending on the GLX version and the available extensions on the server,
    * send the correct "flavor" of protocol to the server.
    *
    * THE ORDER IS IMPORTANT.  We want to send the most recent version of the
    * protocol that the server can support.
    */
   if (glx_dpy->minorVersion == 4
       && any_screen_has_ARB_create_context_profile) {
      xcb_glx_set_client_info_2arb(c,
				  GLX_MAJOR_VERSION, GLX_MINOR_VERSION,
				   sizeof(gl_versions_profiles)
				   / (3 * sizeof(gl_versions_profiles[0])),
				  gl_extension_length,
				  strlen(glx_extensions) + 1,
				  gl_versions_profiles,
				  gl_extension_string,
				  glx_extensions);
   } else if (glx_dpy->minorVersion == 4
	      && any_screen_has_ARB_create_context) {
      xcb_glx_set_client_info_arb(c,
				  GLX_MAJOR_VERSION, GLX_MINOR_VERSION,
				  sizeof(gl_versions)
				  / (2 * sizeof(gl_versions[0])),
				  gl_extension_length,
				  strlen(glx_extensions) + 1,
				  gl_versions,
				  gl_extension_string,
				  glx_extensions);
   } else {
      xcb_glx_client_info(c,
			  GLX_MAJOR_VERSION, GLX_MINOR_VERSION,
			  gl_extension_length,
			  gl_extension_string);
   }

   free(gl_extension_string);
}