2021-06-06 01:26:18 +00:00
|
|
|
/**
|
|
|
|
* Looking Glass
|
2021-08-04 09:48:32 +00:00
|
|
|
* Copyright © 2017-2021 The Looking Glass Authors
|
2021-06-06 01:26:18 +00:00
|
|
|
* https://looking-glass.io
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 2 of the License, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc., 59
|
|
|
|
* Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
2021-03-26 22:21:32 +00:00
|
|
|
|
|
|
|
#ifndef _H_X11DS_X11_
|
|
|
|
#define _H_X11DS_X11_
|
|
|
|
|
2021-08-02 04:46:21 +00:00
|
|
|
#include <stdatomic.h>
|
|
|
|
|
2021-03-26 22:21:32 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xatom.h>
|
2021-03-26 23:05:57 +00:00
|
|
|
#include <X11/Xutil.h>
|
2021-08-02 21:49:59 +00:00
|
|
|
#include <X11/extensions/Xfixes.h>
|
2021-03-26 22:21:32 +00:00
|
|
|
|
2021-08-02 04:46:21 +00:00
|
|
|
#include <GL/glx.h>
|
|
|
|
|
2021-07-31 08:23:05 +00:00
|
|
|
#include "interface/displayserver.h"
|
2021-03-26 22:21:32 +00:00
|
|
|
#include "common/thread.h"
|
|
|
|
#include "common/types.h"
|
|
|
|
|
|
|
|
struct X11DSState
|
|
|
|
{
|
|
|
|
Display * display;
|
|
|
|
Window window;
|
|
|
|
XVisualInfo * visual;
|
2021-08-02 04:46:21 +00:00
|
|
|
|
2021-08-06 17:39:11 +00:00
|
|
|
_Atomic(uint64_t) lastWMEvent;
|
|
|
|
|
2021-08-03 20:30:21 +00:00
|
|
|
int xpresentOp;
|
|
|
|
bool jitRender;
|
|
|
|
_Atomic(uint64_t) presentMsc, presentUst;
|
|
|
|
uint32_t presentSerial;
|
|
|
|
Pixmap presentPixmap;
|
|
|
|
XserverRegion presentRegion;
|
|
|
|
LGEvent * frameEvent;
|
2021-03-26 22:21:32 +00:00
|
|
|
|
|
|
|
LGThread * eventThread;
|
|
|
|
|
2021-08-03 20:14:27 +00:00
|
|
|
int xinputOp;
|
2021-03-26 22:21:32 +00:00
|
|
|
int pointerDev;
|
|
|
|
int keyboardDev;
|
2021-03-27 09:35:04 +00:00
|
|
|
int xValuator;
|
|
|
|
int yValuator;
|
2021-03-26 22:21:32 +00:00
|
|
|
|
|
|
|
bool pointerGrabbed;
|
|
|
|
bool keyboardGrabbed;
|
|
|
|
bool entered;
|
|
|
|
bool focused;
|
|
|
|
bool fullscreen;
|
|
|
|
|
|
|
|
struct Rect rect;
|
|
|
|
struct Border border;
|
|
|
|
|
2021-07-31 08:23:05 +00:00
|
|
|
Cursor cursors[LG_POINTER_COUNT];
|
2021-03-26 22:21:32 +00:00
|
|
|
|
|
|
|
// XFixes vars
|
|
|
|
int eventBase;
|
|
|
|
int errorBase;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct X11DSState x11;
|
|
|
|
|
|
|
|
#endif
|