mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 09:18:04 +02:00
apple: Change from XExtDisplayInfo to struct glx_display
Fixes regression introduced by:ab434f6b76andc356f5867fSigned-off-by: Jeremy Huddleston <jeremyhu@apple.com> (cherry picked from commit7cdf969527)
This commit is contained in:
parent
a6a5772250
commit
7c4cc8d2b9
1 changed files with 6 additions and 4 deletions
|
|
@ -27,22 +27,24 @@
|
|||
prior written authorization.
|
||||
*/
|
||||
#include <stdbool.h>
|
||||
#include <assert.h>
|
||||
#include <X11/Xlibint.h>
|
||||
#include <X11/extensions/extutil.h>
|
||||
#include <X11/extensions/Xext.h>
|
||||
#include "glxclient.h"
|
||||
#include "glx_error.h"
|
||||
|
||||
extern XExtDisplayInfo *__glXFindDisplay(Display * dpy);
|
||||
|
||||
void
|
||||
__glXSendError(Display * dpy, int errorCode, unsigned long resourceID,
|
||||
unsigned long minorCode, bool coreX11error)
|
||||
{
|
||||
XExtDisplayInfo *info = __glXFindDisplay(dpy);
|
||||
struct glx_display *glx_dpy = __glXInitialize(dpy);
|
||||
struct glx_context *gc = __glXGetCurrentContext();
|
||||
xError error;
|
||||
|
||||
assert(glx_dpy);
|
||||
assert(gc);
|
||||
|
||||
LockDisplay(dpy);
|
||||
|
||||
error.type = X_Error;
|
||||
|
|
@ -51,7 +53,7 @@ __glXSendError(Display * dpy, int errorCode, unsigned long resourceID,
|
|||
error.errorCode = errorCode;
|
||||
}
|
||||
else {
|
||||
error.errorCode = info->codes->first_error + errorCode;
|
||||
error.errorCode = glx_dpy->codes->first_error + errorCode;
|
||||
}
|
||||
|
||||
error.sequenceNumber = dpy->request;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue