~mmach/netext73/mesa-haswell

« back to all changes in this revision

Viewing changes to src/glx/glx_error.c

  • Committer: mmach
  • Date: 2022-09-22 19:56:13 UTC
  • Revision ID: netbit73@gmail.com-20220922195613-wtik9mmy20tmor0i
2022-09-22 21:17:09

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
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>
30
 
#include <assert.h>
31
 
#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
 
 
37
 
void
38
 
__glXSendError(Display * dpy, int_fast8_t errorCode, uint_fast32_t resourceID,
39
 
               uint_fast16_t minorCode, bool coreX11error)
40
 
{
41
 
   struct glx_display *glx_dpy = __glXInitialize(dpy);
42
 
   xError error;
43
 
 
44
 
   assert(glx_dpy);
45
 
 
46
 
   LockDisplay(dpy);
47
 
 
48
 
   error.type = X_Error;
49
 
 
50
 
   if (coreX11error) {
51
 
      error.errorCode = errorCode;
52
 
   }
53
 
   else {
54
 
      error.errorCode = glx_dpy->codes.first_error + errorCode;
55
 
   }
56
 
 
57
 
   error.sequenceNumber = dpy->request;
58
 
   error.resourceID = resourceID;
59
 
   error.minorCode = minorCode;
60
 
   error.majorCode = glx_dpy->codes.major_opcode;
61
 
 
62
 
   _XError(dpy, &error);
63
 
 
64
 
   UnlockDisplay(dpy);
65
 
}
66
 
 
67
 
void
68
 
__glXSendErrorForXcb(Display * dpy, const xcb_generic_error_t *err)
69
 
{
70
 
   xError error;
71
 
 
72
 
   LockDisplay(dpy);
73
 
 
74
 
   error.type = X_Error;
75
 
   error.errorCode = err->error_code;
76
 
   error.sequenceNumber = err->sequence;
77
 
   error.resourceID = err->resource_id;
78
 
   error.minorCode = err->minor_code;
79
 
   error.majorCode = err->major_code;
80
 
 
81
 
   _XError(dpy, &error);
82
 
 
83
 
   UnlockDisplay(dpy);
84
 
}