blob: b3860db2e3745bb64f0be8999b6b1b90cd0cbfde [file] [log] [blame]
Jeremy Huddlestonad503c42010-04-01 11:01:31 -07001/*
2 Copyright (c) 2009 Apple Inc.
3
4 Permission is hereby granted, free of charge, to any person
5 obtaining a copy of this software and associated documentation files
6 (the "Software"), to deal in the Software without restriction,
7 including without limitation the rights to use, copy, modify, merge,
8 publish, distribute, sublicense, and/or sell copies of the Software,
9 and to permit persons to whom the Software is furnished to do so,
10 subject to the following conditions:
11
12 The above copyright notice and this permission notice shall be
13 included in all copies or substantial portions of the Software.
14
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 NONINFRINGEMENT. IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT
19 HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 DEALINGS IN THE SOFTWARE.
23
24 Except as contained in this notice, the name(s) of the above
25 copyright holders shall not be used in advertising or otherwise to
26 promote the sale, use or other dealings in this Software without
27 prior written authorization.
28*/
29#include <stdbool.h>
Jeremy Huddleston7cdf9692011-06-05 19:26:19 -040030#include <assert.h>
Jeremy Huddlestonad503c42010-04-01 11:01:31 -070031#include <X11/Xlibint.h>
32#include <X11/extensions/extutil.h>
33#include <X11/extensions/Xext.h>
34#include "glxclient.h"
35#include "glx_error.h"
36
Jeremy Huddlestonad503c42010-04-01 11:01:31 -070037void
Ian Romanickb1ffb332011-12-12 09:48:29 -080038__glXSendError(Display * dpy, int_fast8_t errorCode, uint_fast32_t resourceID,
39 uint_fast16_t minorCode, bool coreX11error)
Jeremy Huddlestonad503c42010-04-01 11:01:31 -070040{
Jeremy Huddleston7cdf9692011-06-05 19:26:19 -040041 struct glx_display *glx_dpy = __glXInitialize(dpy);
Jeremy Huddleston22613d12011-06-05 17:22:56 -040042 struct glx_context *gc = __glXGetCurrentContext();
Jeremy Huddlestonad503c42010-04-01 11:01:31 -070043 xError error;
44
Jeremy Huddleston7cdf9692011-06-05 19:26:19 -040045 assert(glx_dpy);
46 assert(gc);
47
Jeremy Huddlestonad503c42010-04-01 11:01:31 -070048 LockDisplay(dpy);
49
50 error.type = X_Error;
51
52 if (coreX11error) {
53 error.errorCode = errorCode;
54 }
55 else {
Jeremy Huddleston7cdf9692011-06-05 19:26:19 -040056 error.errorCode = glx_dpy->codes->first_error + errorCode;
Jeremy Huddlestonad503c42010-04-01 11:01:31 -070057 }
58
59 error.sequenceNumber = dpy->request;
60 error.resourceID = resourceID;
61 error.minorCode = minorCode;
62 error.majorCode = gc ? gc->majorOpcode : 0;
63
64 _XError(dpy, &error);
65
66 UnlockDisplay(dpy);
67}
Ian Romanickfba40002011-12-12 09:54:25 -080068
69void
70__glXSendErrorForXcb(Display * dpy, const xcb_generic_error_t *err)
71{
72 xError error;
73
74 LockDisplay(dpy);
75
76 error.type = X_Error;
77 error.errorCode = err->error_code;
78 error.sequenceNumber = err->sequence;
79 error.resourceID = err->resource_id;
80 error.minorCode = err->minor_code;
81 error.majorCode = err->major_code;
82
83 _XError(dpy, &error);
84
85 UnlockDisplay(dpy);
86}