egl: Add EGL_KHR_create_context_no_error support
[mesa.git] / src / egl / main / eglcontext.c
1 /**************************************************************************
2 *
3 * Copyright 2008 VMware, Inc.
4 * Copyright 2009-2010 Chia-I Wu <olvaffe@gmail.com>
5 * Copyright 2010-2011 LunarG, Inc.
6 * All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sub license, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
15 *
16 * The above copyright notice and this permission notice (including the
17 * next paragraph) shall be included in all copies or substantial portions
18 * of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26 * DEALINGS IN THE SOFTWARE.
27 *
28 **************************************************************************/
29
30
31 #include <assert.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include "eglconfig.h"
35 #include "eglcontext.h"
36 #include "egldisplay.h"
37 #include "eglcurrent.h"
38 #include "eglsurface.h"
39 #include "egllog.h"
40
41
42 /**
43 * Return the API bit (one of EGL_xxx_BIT) of the context.
44 */
45 static EGLint
46 _eglGetContextAPIBit(_EGLContext *ctx)
47 {
48 EGLint bit = 0;
49
50 switch (ctx->ClientAPI) {
51 case EGL_OPENGL_ES_API:
52 switch (ctx->ClientMajorVersion) {
53 case 1:
54 bit = EGL_OPENGL_ES_BIT;
55 break;
56 case 2:
57 bit = EGL_OPENGL_ES2_BIT;
58 break;
59 case 3:
60 bit = EGL_OPENGL_ES3_BIT_KHR;
61 break;
62 default:
63 break;
64 }
65 break;
66 case EGL_OPENVG_API:
67 bit = EGL_OPENVG_BIT;
68 break;
69 case EGL_OPENGL_API:
70 bit = EGL_OPENGL_BIT;
71 break;
72 default:
73 break;
74 }
75
76 return bit;
77 }
78
79
80 /**
81 * Parse the list of context attributes and return the proper error code.
82 */
83 static EGLint
84 _eglParseContextAttribList(_EGLContext *ctx, _EGLDisplay *dpy,
85 const EGLint *attrib_list)
86 {
87 EGLenum api = ctx->ClientAPI;
88 EGLint i, err = EGL_SUCCESS;
89
90 if (!attrib_list)
91 return EGL_SUCCESS;
92
93 if (api == EGL_OPENVG_API && attrib_list[0] != EGL_NONE) {
94 _eglLog(_EGL_DEBUG, "bad context attribute 0x%04x", attrib_list[0]);
95 return EGL_BAD_ATTRIBUTE;
96 }
97
98 for (i = 0; attrib_list[i] != EGL_NONE; i++) {
99 EGLint attr = attrib_list[i++];
100 EGLint val = attrib_list[i];
101
102 switch (attr) {
103 case EGL_CONTEXT_CLIENT_VERSION:
104 /* The EGL 1.4 spec says:
105 *
106 * "attribute EGL_CONTEXT_CLIENT_VERSION is only valid when the
107 * current rendering API is EGL_OPENGL_ES_API"
108 *
109 * The EGL_KHR_create_context spec says:
110 *
111 * "EGL_CONTEXT_MAJOR_VERSION_KHR 0x3098
112 * (this token is an alias for EGL_CONTEXT_CLIENT_VERSION)"
113 *
114 * "The values for attributes EGL_CONTEXT_MAJOR_VERSION_KHR and
115 * EGL_CONTEXT_MINOR_VERSION_KHR specify the requested client API
116 * version. They are only meaningful for OpenGL and OpenGL ES
117 * contexts, and specifying them for other types of contexts will
118 * generate an error."
119 */
120 if ((api != EGL_OPENGL_ES_API &&
121 (!dpy->Extensions.KHR_create_context || api != EGL_OPENGL_API))) {
122 err = EGL_BAD_ATTRIBUTE;
123 break;
124 }
125
126 ctx->ClientMajorVersion = val;
127 break;
128
129 case EGL_CONTEXT_MINOR_VERSION_KHR:
130 /* The EGL_KHR_create_context spec says:
131 *
132 * "The values for attributes EGL_CONTEXT_MAJOR_VERSION_KHR and
133 * EGL_CONTEXT_MINOR_VERSION_KHR specify the requested client API
134 * version. They are only meaningful for OpenGL and OpenGL ES
135 * contexts, and specifying them for other types of contexts will
136 * generate an error."
137 */
138 if (!dpy->Extensions.KHR_create_context ||
139 (api != EGL_OPENGL_ES_API && api != EGL_OPENGL_API)) {
140 err = EGL_BAD_ATTRIBUTE;
141 break;
142 }
143
144 ctx->ClientMinorVersion = val;
145 break;
146
147 case EGL_CONTEXT_FLAGS_KHR:
148 if (!dpy->Extensions.KHR_create_context) {
149 err = EGL_BAD_ATTRIBUTE;
150 break;
151 }
152
153 /* The EGL_KHR_create_context spec says:
154 *
155 * "If the EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR flag bit is set in
156 * EGL_CONTEXT_FLAGS_KHR, then a <debug context> will be created.
157 * [...]
158 * In some cases a debug context may be identical to a non-debug
159 * context. This bit is supported for OpenGL and OpenGL ES
160 * contexts."
161 */
162 if ((val & EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR) &&
163 (api != EGL_OPENGL_API && api != EGL_OPENGL_ES_API)) {
164 err = EGL_BAD_ATTRIBUTE;
165 break;
166 }
167
168 /* The EGL_KHR_create_context spec says:
169 *
170 * "If the EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR flag bit
171 * is set in EGL_CONTEXT_FLAGS_KHR, then a <forward-compatible>
172 * context will be created. Forward-compatible contexts are
173 * defined only for OpenGL versions 3.0 and later. They must not
174 * support functionality marked as <deprecated> by that version of
175 * the API, while a non-forward-compatible context must support
176 * all functionality in that version, deprecated or not. This bit
177 * is supported for OpenGL contexts, and requesting a
178 * forward-compatible context for OpenGL versions less than 3.0
179 * will generate an error."
180 */
181 if ((val & EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR) &&
182 (api != EGL_OPENGL_API || ctx->ClientMajorVersion < 3)) {
183 err = EGL_BAD_ATTRIBUTE;
184 break;
185 }
186
187 if ((val & EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR) &&
188 api != EGL_OPENGL_API) {
189 /* The EGL_KHR_create_context spec says:
190 *
191 * 10) Which error should be generated if robust buffer access
192 * or reset notifications are requested under OpenGL ES?
193 *
194 * As per Issue 6, this extension does not support creating
195 * robust contexts for OpenGL ES. This is only supported via
196 * the EGL_EXT_create_context_robustness extension.
197 *
198 * Attempting to use this extension to create robust OpenGL
199 * ES context will generate an EGL_BAD_ATTRIBUTE error. This
200 * specific error is generated because this extension does
201 * not define the EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR
202 * and EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_KHR
203 * bits for OpenGL ES contexts. Thus, use of these bits fall
204 * under condition described by: "If an attribute is
205 * specified that is not meaningful for the client API
206 * type.." in the above specification.
207 *
208 * The spec requires that we emit the error even if the display
209 * supports EGL_EXT_create_context_robustness. To create a robust
210 * GLES context, the *attribute*
211 * EGL_CONTEXT_OPENGL_ROBUST_ACCESS_EXT must be used, not the
212 * *flag* EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR.
213 */
214 err = EGL_BAD_ATTRIBUTE;
215 break;
216 }
217
218 ctx->Flags |= val;
219 break;
220
221 case EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR:
222 if (!dpy->Extensions.KHR_create_context) {
223 err = EGL_BAD_ATTRIBUTE;
224 break;
225 }
226
227 /* The EGL_KHR_create_context spec says:
228 *
229 * "[EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR] is only meaningful for
230 * OpenGL contexts, and specifying it for other types of
231 * contexts, including OpenGL ES contexts, will generate an
232 * error."
233 */
234 if (api != EGL_OPENGL_API) {
235 err = EGL_BAD_ATTRIBUTE;
236 break;
237 }
238
239 ctx->Profile = val;
240 break;
241
242 case EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_KHR:
243 /* The EGL_KHR_create_context spec says:
244 *
245 * "[EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_KHR] is only
246 * meaningful for OpenGL contexts, and specifying it for other
247 * types of contexts, including OpenGL ES contexts, will generate
248 * an error."
249 */
250 if (!dpy->Extensions.KHR_create_context
251 || api != EGL_OPENGL_API) {
252 err = EGL_BAD_ATTRIBUTE;
253 break;
254 }
255
256 ctx->ResetNotificationStrategy = val;
257 break;
258
259 case EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_EXT:
260 /* The EGL_EXT_create_context_robustness spec says:
261 *
262 * "[EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_EXT] is only
263 * meaningful for OpenGL ES contexts, and specifying it for other
264 * types of contexts will generate an EGL_BAD_ATTRIBUTE error."
265 */
266 if (!dpy->Extensions.EXT_create_context_robustness
267 || api != EGL_OPENGL_ES_API) {
268 err = EGL_BAD_ATTRIBUTE;
269 break;
270 }
271
272 ctx->ResetNotificationStrategy = val;
273 break;
274
275 case EGL_CONTEXT_OPENGL_ROBUST_ACCESS_EXT:
276 if (!dpy->Extensions.EXT_create_context_robustness) {
277 err = EGL_BAD_ATTRIBUTE;
278 break;
279 }
280
281 if (val == EGL_TRUE)
282 ctx->Flags |= EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR;
283 break;
284
285 case EGL_CONTEXT_OPENGL_ROBUST_ACCESS:
286 if (dpy->Version < 15) {
287 err = EGL_BAD_ATTRIBUTE;
288 break;
289 }
290
291 if (val == EGL_TRUE)
292 ctx->Flags |= EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR;
293 break;
294
295 case EGL_CONTEXT_OPENGL_DEBUG:
296 if (dpy->Version < 15) {
297 err = EGL_BAD_ATTRIBUTE;
298 break;
299 }
300
301 if (val == EGL_TRUE)
302 ctx->Flags |= EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR;
303 break;
304
305 case EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE:
306 if (dpy->Version < 15) {
307 err = EGL_BAD_ATTRIBUTE;
308 break;
309 }
310
311 if (val == EGL_TRUE)
312 ctx->Flags |= EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR;
313 break;
314
315 case EGL_CONTEXT_OPENGL_NO_ERROR_KHR:
316 if (dpy->Version < 14 ||
317 !dpy->Extensions.KHR_create_context_no_error) {
318 err = EGL_BAD_ATTRIBUTE;
319 break;
320 }
321
322 /* The KHR_no_error spec only applies against OpenGL 2.0+ and
323 * OpenGL ES 2.0+
324 */
325 if ((api != EGL_OPENGL_API && api != EGL_OPENGL_ES_API) ||
326 ctx->ClientMajorVersion < 2) {
327 err = EGL_BAD_ATTRIBUTE;
328 break;
329 }
330
331 /* The EGL_KHR_create_context_no_error spec says:
332 *
333 * "BAD_MATCH is generated if the EGL_CONTEXT_OPENGL_NO_ERROR_KHR is TRUE at
334 * the same time as a debug or robustness context is specified."
335 */
336 if (ctx->Flags & EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR ||
337 ctx->Flags & EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR) {
338 err = EGL_BAD_MATCH;
339 break;
340 }
341
342 /* Canonicalize value to EGL_TRUE/EGL_FALSE definitions */
343 ctx->NoError = !!val;
344 break;
345
346 default:
347 err = EGL_BAD_ATTRIBUTE;
348 break;
349 }
350
351 if (err != EGL_SUCCESS) {
352 _eglLog(_EGL_DEBUG, "bad context attribute 0x%04x", attr);
353 break;
354 }
355 }
356
357 if (api == EGL_OPENGL_API) {
358 /* The EGL_KHR_create_context spec says:
359 *
360 * "If the requested OpenGL version is less than 3.2,
361 * EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR is ignored and the
362 * functionality of the context is determined solely by the
363 * requested version."
364 *
365 * Since the value is ignored, only validate the setting if the version
366 * is >= 3.2.
367 */
368 if (ctx->ClientMajorVersion >= 4
369 || (ctx->ClientMajorVersion == 3 && ctx->ClientMinorVersion >= 2)) {
370 switch (ctx->Profile) {
371 case EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR:
372 case EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT_KHR:
373 break;
374
375 default:
376 /* The EGL_KHR_create_context spec says:
377 *
378 * "* If an OpenGL context is requested, the requested version
379 * is greater than 3.2, and the value for attribute
380 * EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR has no bits set; has
381 * any bits set other than EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR
382 * and EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT_KHR; has
383 * more than one of these bits set; or if the implementation does
384 * not support the requested profile, then an EGL_BAD_MATCH error
385 * is generated."
386 */
387 err = EGL_BAD_MATCH;
388 break;
389 }
390 }
391
392 /* The EGL_KHR_create_context spec says:
393 *
394 * "* If an OpenGL context is requested and the values for
395 * attributes EGL_CONTEXT_MAJOR_VERSION_KHR and
396 * EGL_CONTEXT_MINOR_VERSION_KHR, when considered together with
397 * the value for attribute
398 * EGL_CONTEXT_FORWARD_COMPATIBLE_BIT_KHR, specify an OpenGL
399 * version and feature set that are not defined, than an
400 * EGL_BAD_MATCH error is generated.
401 *
402 * ... Thus, examples of invalid combinations of attributes
403 * include:
404 *
405 * - Major version < 1 or > 4
406 * - Major version == 1 and minor version < 0 or > 5
407 * - Major version == 2 and minor version < 0 or > 1
408 * - Major version == 3 and minor version < 0 or > 2
409 * - Major version == 4 and minor version < 0 or > 2
410 * - Forward-compatible flag set and major version < 3"
411 */
412 if (ctx->ClientMajorVersion < 1 || ctx->ClientMinorVersion < 0)
413 err = EGL_BAD_MATCH;
414
415 switch (ctx->ClientMajorVersion) {
416 case 1:
417 if (ctx->ClientMinorVersion > 5
418 || (ctx->Flags & EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR) != 0)
419 err = EGL_BAD_MATCH;
420 break;
421
422 case 2:
423 if (ctx->ClientMinorVersion > 1
424 || (ctx->Flags & EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR) != 0)
425 err = EGL_BAD_MATCH;
426 break;
427
428 case 3:
429 /* Note: The text above is incorrect. There *is* an OpenGL 3.3!
430 */
431 if (ctx->ClientMinorVersion > 3)
432 err = EGL_BAD_MATCH;
433 break;
434
435 case 4:
436 default:
437 /* Don't put additional version checks here. We don't know that
438 * there won't be versions > 4.2.
439 */
440 break;
441 }
442 } else if (api == EGL_OPENGL_ES_API) {
443 /* The EGL_KHR_create_context spec says:
444 *
445 * "* If an OpenGL ES context is requested and the values for
446 * attributes EGL_CONTEXT_MAJOR_VERSION_KHR and
447 * EGL_CONTEXT_MINOR_VERSION_KHR specify an OpenGL ES version that
448 * is not defined, than an EGL_BAD_MATCH error is generated.
449 *
450 * ... Examples of invalid combinations of attributes include:
451 *
452 * - Major version < 1 or > 2
453 * - Major version == 1 and minor version < 0 or > 1
454 * - Major version == 2 and minor version != 0
455 */
456 if (ctx->ClientMajorVersion < 1 || ctx->ClientMinorVersion < 0)
457 err = EGL_BAD_MATCH;
458
459 switch (ctx->ClientMajorVersion) {
460 case 1:
461 if (ctx->ClientMinorVersion > 1)
462 err = EGL_BAD_MATCH;
463 break;
464
465 case 2:
466 if (ctx->ClientMinorVersion > 0)
467 err = EGL_BAD_MATCH;
468 break;
469
470 case 3:
471 /* Don't put additional version checks here. We don't know that
472 * there won't be versions > 3.0.
473 */
474 break;
475
476 default:
477 err = EGL_BAD_MATCH;
478 break;
479 }
480 }
481
482 switch (ctx->ResetNotificationStrategy) {
483 case EGL_NO_RESET_NOTIFICATION_KHR:
484 case EGL_LOSE_CONTEXT_ON_RESET_KHR:
485 break;
486
487 default:
488 err = EGL_BAD_ATTRIBUTE;
489 break;
490 }
491
492 if ((ctx->Flags & ~(EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR
493 | EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR
494 | EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR)) != 0) {
495 err = EGL_BAD_ATTRIBUTE;
496 }
497
498 return err;
499 }
500
501
502 /**
503 * Initialize the given _EGLContext object to defaults and/or the values
504 * in the attrib_list.
505 *
506 * According to EGL 1.5 Section 3.7:
507 *
508 * "EGL_OPENGL_API and EGL_OPENGL_ES_API are interchangeable for all
509 * purposes except eglCreateContext."
510 *
511 * And since we only support GL and GLES, this is the only place where the
512 * bound API matters at all. We look up the current API from the current
513 * thread, and stash that in the context we're initializing. Our caller is
514 * responsible for determining whether that's an API it supports.
515 */
516 EGLBoolean
517 _eglInitContext(_EGLContext *ctx, _EGLDisplay *dpy, _EGLConfig *conf,
518 const EGLint *attrib_list)
519 {
520 const EGLenum api = eglQueryAPI();
521 EGLint err;
522
523 if (api == EGL_NONE)
524 return _eglError(EGL_BAD_MATCH, "eglCreateContext(no client API)");
525
526 _eglInitResource(&ctx->Resource, sizeof(*ctx), dpy);
527 ctx->ClientAPI = api;
528 ctx->Config = conf;
529 ctx->WindowRenderBuffer = EGL_NONE;
530 ctx->Profile = EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR;
531
532 ctx->ClientMajorVersion = 1; /* the default, per EGL spec */
533 ctx->ClientMinorVersion = 0;
534 ctx->Flags = 0;
535 ctx->Profile = EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR;
536 ctx->ResetNotificationStrategy = EGL_NO_RESET_NOTIFICATION_KHR;
537
538 err = _eglParseContextAttribList(ctx, dpy, attrib_list);
539 if (err == EGL_SUCCESS && ctx->Config) {
540 EGLint api_bit;
541
542 api_bit = _eglGetContextAPIBit(ctx);
543 if (!(ctx->Config->RenderableType & api_bit)) {
544 _eglLog(_EGL_DEBUG, "context api is 0x%x while config supports 0x%x",
545 api_bit, ctx->Config->RenderableType);
546 err = EGL_BAD_CONFIG;
547 }
548 }
549 if (err != EGL_SUCCESS)
550 return _eglError(err, "eglCreateContext");
551
552 return EGL_TRUE;
553 }
554
555
556 static EGLint
557 _eglQueryContextRenderBuffer(_EGLContext *ctx)
558 {
559 _EGLSurface *surf = ctx->DrawSurface;
560 EGLint rb;
561
562 if (!surf)
563 return EGL_NONE;
564 if (surf->Type == EGL_WINDOW_BIT && ctx->WindowRenderBuffer != EGL_NONE)
565 rb = ctx->WindowRenderBuffer;
566 else
567 rb = surf->RenderBuffer;
568 return rb;
569 }
570
571
572 EGLBoolean
573 _eglQueryContext(_EGLDriver *drv, _EGLDisplay *dpy, _EGLContext *c,
574 EGLint attribute, EGLint *value)
575 {
576 (void) drv;
577 (void) dpy;
578
579 if (!value)
580 return _eglError(EGL_BAD_PARAMETER, "eglQueryContext");
581
582 switch (attribute) {
583 case EGL_CONFIG_ID:
584 /*
585 * From EGL_KHR_no_config_context:
586 *
587 * "Querying EGL_CONFIG_ID returns the ID of the EGLConfig with
588 * respect to which the context was created, or zero if created
589 * without respect to an EGLConfig."
590 */
591 *value = c->Config ? c->Config->ConfigID : 0;
592 break;
593 case EGL_CONTEXT_CLIENT_VERSION:
594 *value = c->ClientMajorVersion;
595 break;
596 case EGL_CONTEXT_CLIENT_TYPE:
597 *value = c->ClientAPI;
598 break;
599 case EGL_RENDER_BUFFER:
600 *value = _eglQueryContextRenderBuffer(c);
601 break;
602 default:
603 return _eglError(EGL_BAD_ATTRIBUTE, "eglQueryContext");
604 }
605
606 return EGL_TRUE;
607 }
608
609
610 /**
611 * Bind the context to the thread and return the previous context.
612 *
613 * Note that the context may be NULL.
614 */
615 _EGLContext *
616 _eglBindContextToThread(_EGLContext *ctx, _EGLThreadInfo *t)
617 {
618 _EGLContext *oldCtx;
619
620 oldCtx = t->CurrentContext;
621 if (ctx != oldCtx) {
622 if (oldCtx)
623 oldCtx->Binding = NULL;
624 if (ctx)
625 ctx->Binding = t;
626
627 t->CurrentContext = ctx;
628 }
629
630 return oldCtx;
631 }
632
633
634 /**
635 * Return true if the given context and surfaces can be made current.
636 */
637 static EGLBoolean
638 _eglCheckMakeCurrent(_EGLContext *ctx, _EGLSurface *draw, _EGLSurface *read)
639 {
640 _EGLThreadInfo *t = _eglGetCurrentThread();
641 _EGLDisplay *dpy;
642
643 if (_eglIsCurrentThreadDummy())
644 return _eglError(EGL_BAD_ALLOC, "eglMakeCurrent");
645
646 /* this is easy */
647 if (!ctx) {
648 if (draw || read)
649 return _eglError(EGL_BAD_MATCH, "eglMakeCurrent");
650 return EGL_TRUE;
651 }
652
653 dpy = ctx->Resource.Display;
654 if (!dpy->Extensions.KHR_surfaceless_context
655 && (draw == NULL || read == NULL))
656 return _eglError(EGL_BAD_MATCH, "eglMakeCurrent");
657
658 /*
659 * The spec says
660 *
661 * "If ctx is current to some other thread, or if either draw or read are
662 * bound to contexts in another thread, an EGL_BAD_ACCESS error is
663 * generated."
664 *
665 * and
666 *
667 * "at most one context may be bound to a particular surface at a given
668 * time"
669 */
670 if (ctx->Binding && ctx->Binding != t)
671 return _eglError(EGL_BAD_ACCESS, "eglMakeCurrent");
672 if (draw && draw->CurrentContext && draw->CurrentContext != ctx) {
673 if (draw->CurrentContext->Binding != t)
674 return _eglError(EGL_BAD_ACCESS, "eglMakeCurrent");
675 }
676 if (read && read->CurrentContext && read->CurrentContext != ctx) {
677 if (read->CurrentContext->Binding != t)
678 return _eglError(EGL_BAD_ACCESS, "eglMakeCurrent");
679 }
680
681 /* If the context has a config then it must match that of the two
682 * surfaces */
683 if (ctx->Config) {
684 if ((draw && draw->Config != ctx->Config) ||
685 (read && read->Config != ctx->Config))
686 return _eglError(EGL_BAD_MATCH, "eglMakeCurrent");
687 } else {
688 /* Otherwise we must be using the EGL_KHR_no_config_context
689 * extension */
690 assert(dpy->Extensions.KHR_no_config_context);
691
692 /* The extension doesn't permit binding draw and read buffers with
693 * differing contexts */
694 if (draw && read && draw->Config != read->Config)
695 return _eglError(EGL_BAD_MATCH, "eglMakeCurrent");
696 }
697
698 return EGL_TRUE;
699 }
700
701
702 /**
703 * Bind the context to the current thread and given surfaces. Return the
704 * previous bound context and surfaces. The caller should unreference the
705 * returned context and surfaces.
706 *
707 * Making a second call with the resources returned by the first call
708 * unsurprisingly undoes the first call, except for the resouce reference
709 * counts.
710 */
711 EGLBoolean
712 _eglBindContext(_EGLContext *ctx, _EGLSurface *draw, _EGLSurface *read,
713 _EGLContext **old_ctx,
714 _EGLSurface **old_draw, _EGLSurface **old_read)
715 {
716 _EGLThreadInfo *t = _eglGetCurrentThread();
717 _EGLContext *prev_ctx;
718 _EGLSurface *prev_draw, *prev_read;
719
720 if (!_eglCheckMakeCurrent(ctx, draw, read))
721 return EGL_FALSE;
722
723 /* increment refcounts before binding */
724 _eglGetContext(ctx);
725 _eglGetSurface(draw);
726 _eglGetSurface(read);
727
728 /* bind the new context */
729 prev_ctx = _eglBindContextToThread(ctx, t);
730
731 /* break previous bindings */
732 if (prev_ctx) {
733 prev_draw = prev_ctx->DrawSurface;
734 prev_read = prev_ctx->ReadSurface;
735
736 if (prev_draw)
737 prev_draw->CurrentContext = NULL;
738 if (prev_read)
739 prev_read->CurrentContext = NULL;
740
741 prev_ctx->DrawSurface = NULL;
742 prev_ctx->ReadSurface = NULL;
743 }
744 else {
745 prev_draw = prev_read = NULL;
746 }
747
748 /* establish new bindings */
749 if (ctx) {
750 if (draw)
751 draw->CurrentContext = ctx;
752 if (read)
753 read->CurrentContext = ctx;
754
755 ctx->DrawSurface = draw;
756 ctx->ReadSurface = read;
757 }
758
759 assert(old_ctx && old_draw && old_read);
760 *old_ctx = prev_ctx;
761 *old_draw = prev_draw;
762 *old_read = prev_read;
763
764 return EGL_TRUE;
765 }