mirror of https://github.com/buggins/dlangui.git
XCB OpenGL support
This commit is contained in:
parent
6d180a7a1b
commit
1e39e2fdf6
|
@ -18,7 +18,7 @@ const int XlibSpecificationRelease=6;
|
||||||
version = X_HAVE_UTF8_STRING;
|
version = X_HAVE_UTF8_STRING;
|
||||||
|
|
||||||
alias XPointer = void*;
|
alias XPointer = void*;
|
||||||
typedef int Status ;
|
alias Status = int;
|
||||||
enum Bool:int{False,True}; //xlib boolean is int type, D bool is only byte
|
enum Bool:int{False,True}; //xlib boolean is int type, D bool is only byte
|
||||||
enum QueueMode{QueuedAlready,QueuedAfterReading,QueuedAfterFlush};
|
enum QueueMode{QueuedAlready,QueuedAfterReading,QueuedAfterFlush};
|
||||||
|
|
||||||
|
@ -143,7 +143,7 @@ struct XGCValues
|
||||||
byte dashes;
|
byte dashes;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef void* GC;
|
alias GC = void*;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Visual structure; contains information about colormapping possible.
|
* Visual structure; contains information about colormapping possible.
|
||||||
|
@ -462,7 +462,7 @@ struct Display
|
||||||
/* there is more to this structure, but it is private to Xlib */
|
/* there is more to this structure, but it is private to Xlib */
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef Display *_XPrivDisplay;
|
alias _XPrivDisplay = Display *;
|
||||||
struct XrmHashBucketRec{};
|
struct XrmHashBucketRec{};
|
||||||
|
|
||||||
|
|
||||||
|
@ -485,8 +485,8 @@ struct XKeyEvent
|
||||||
uint keycode; /* detail */
|
uint keycode; /* detail */
|
||||||
Bool same_screen; /* same screen flag */
|
Bool same_screen; /* same screen flag */
|
||||||
};
|
};
|
||||||
typedef XKeyEvent XKeyPressedEvent;
|
alias XKeyPressedEvent = XKeyEvent;
|
||||||
typedef XKeyEvent XKeyReleasedEvent;
|
alias XKeyReleasedEvent = XKeyEvent;
|
||||||
|
|
||||||
struct XButtonEvent
|
struct XButtonEvent
|
||||||
{
|
{
|
||||||
|
@ -504,8 +504,8 @@ struct XButtonEvent
|
||||||
uint button; /* detail */
|
uint button; /* detail */
|
||||||
Bool same_screen; /* same screen flag */
|
Bool same_screen; /* same screen flag */
|
||||||
};
|
};
|
||||||
typedef XButtonEvent XButtonPressedEvent;
|
alias XButtonPressedEvent = XButtonEvent;
|
||||||
typedef XButtonEvent XButtonReleasedEvent;
|
alias XButtonReleasedEvent = XButtonEvent;
|
||||||
|
|
||||||
struct XMotionEvent{
|
struct XMotionEvent{
|
||||||
int type; /* of event */
|
int type; /* of event */
|
||||||
|
@ -522,7 +522,7 @@ struct XMotionEvent{
|
||||||
byte is_hint; /* detail */
|
byte is_hint; /* detail */
|
||||||
Bool same_screen; /* same screen flag */
|
Bool same_screen; /* same screen flag */
|
||||||
};
|
};
|
||||||
typedef XMotionEvent XPointerMovedEvent;
|
alias XPointerMovedEvent = XMotionEvent;
|
||||||
|
|
||||||
struct XCrossingEvent{
|
struct XCrossingEvent{
|
||||||
int type; /* of event */
|
int type; /* of event */
|
||||||
|
@ -545,8 +545,8 @@ struct XCrossingEvent{
|
||||||
Bool focus; /* Boolean focus */
|
Bool focus; /* Boolean focus */
|
||||||
KeyOrButtonMask state; /* key or button mask */
|
KeyOrButtonMask state; /* key or button mask */
|
||||||
};
|
};
|
||||||
typedef XCrossingEvent XEnterWindowEvent;
|
alias XEnterWindowEvent = XCrossingEvent ;
|
||||||
typedef XCrossingEvent XLeaveWindowEvent;
|
alias XLeaveWindowEvent = XCrossingEvent ;
|
||||||
|
|
||||||
struct XFocusChangeEvent{
|
struct XFocusChangeEvent{
|
||||||
int type; /* FocusIn or FocusOut */
|
int type; /* FocusIn or FocusOut */
|
||||||
|
@ -563,8 +563,8 @@ struct XFocusChangeEvent{
|
||||||
* NotifyPointerRoot, NotifyDetailNone
|
* NotifyPointerRoot, NotifyDetailNone
|
||||||
*/
|
*/
|
||||||
};
|
};
|
||||||
typedef XFocusChangeEvent XFocusInEvent;
|
alias XFocusInEvent = XFocusChangeEvent;
|
||||||
typedef XFocusChangeEvent XFocusOutEvent;
|
alias XFocusOutEvent = XFocusChangeEvent;
|
||||||
|
|
||||||
/* generated on EnterWindow and FocusIn when KeyMapState selected */
|
/* generated on EnterWindow and FocusIn when KeyMapState selected */
|
||||||
struct XKeymapEvent
|
struct XKeymapEvent
|
||||||
|
@ -1008,9 +1008,9 @@ typedef void (*XOMProc)();
|
||||||
|
|
||||||
struct _XOM{}
|
struct _XOM{}
|
||||||
struct _XOC{}
|
struct _XOC{}
|
||||||
typedef _XOM *XOM;
|
alias XOM = _XOM *;
|
||||||
typedef _XOC *XOC;
|
alias XOC = _XOC *;
|
||||||
typedef _XOC *XFontSet;
|
alias XFontSet = _XOC *;
|
||||||
struct XmbTextItem{
|
struct XmbTextItem{
|
||||||
byte *chars;
|
byte *chars;
|
||||||
int nchars;
|
int nchars;
|
||||||
|
@ -1066,27 +1066,27 @@ struct XOMFontInfo{
|
||||||
|
|
||||||
struct _XIM{}
|
struct _XIM{}
|
||||||
struct _XIC{}
|
struct _XIC{}
|
||||||
typedef _XIM *XIM;
|
alias XIM = _XIM *;
|
||||||
typedef _XIC *XIC;
|
alias XIC = _XIC *;
|
||||||
|
|
||||||
|
|
||||||
typedef void function(
|
alias XIMProc = void function(
|
||||||
XIM,
|
XIM,
|
||||||
XPointer,
|
XPointer,
|
||||||
XPointer
|
XPointer
|
||||||
) XIMProc;
|
) ;
|
||||||
|
|
||||||
typedef Bool function(
|
alias XICProc = Bool function(
|
||||||
XIC,
|
XIC,
|
||||||
XPointer,
|
XPointer,
|
||||||
XPointer
|
XPointer
|
||||||
)XICProc;
|
);
|
||||||
|
|
||||||
typedef void function(
|
alias XIDProc = void function(
|
||||||
Display*,
|
Display*,
|
||||||
XPointer,
|
XPointer,
|
||||||
XPointer
|
XPointer
|
||||||
)XIDProc;
|
);
|
||||||
|
|
||||||
enum XIMStyle:ulong
|
enum XIMStyle:ulong
|
||||||
{
|
{
|
||||||
|
@ -1157,7 +1157,7 @@ const int XLookupKeySym= 3;
|
||||||
const int XLookupBoth = 4;
|
const int XLookupBoth = 4;
|
||||||
|
|
||||||
|
|
||||||
typedef void *XVaNestedList;
|
alias XVaNestedList = void *;
|
||||||
|
|
||||||
struct XIMCallback{
|
struct XIMCallback{
|
||||||
XPointer client_data;
|
XPointer client_data;
|
||||||
|
@ -1232,7 +1232,7 @@ struct XIMStringConversionText {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef ushort XIMStringConversionPosition;
|
alias XIMStringConversionPosition = ushort ;
|
||||||
|
|
||||||
enum XIMStringConversionType:ushort
|
enum XIMStringConversionType:ushort
|
||||||
{
|
{
|
||||||
|
@ -1753,19 +1753,19 @@ extern int XScreenNumberOfScreen(
|
||||||
Screen* /* screen */
|
Screen* /* screen */
|
||||||
);
|
);
|
||||||
|
|
||||||
typedef int function ( /* WARNING, this type not in Xlib spec */
|
alias XErrorHandler = int function ( /* WARNING, this type not in Xlib spec */
|
||||||
Display* /* display */,
|
Display* /* display */,
|
||||||
XErrorEvent* /* error_event */
|
XErrorEvent* /* error_event */
|
||||||
) XErrorHandler;
|
);
|
||||||
|
|
||||||
extern XErrorHandler XSetErrorHandler (
|
extern XErrorHandler XSetErrorHandler (
|
||||||
XErrorHandler /* handler */
|
XErrorHandler /* handler */
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
typedef int function ( /* WARNING, this type not in Xlib spec */
|
alias XIOErrorHandler = int function ( /* WARNING, this type not in Xlib spec */
|
||||||
Display* /* display */
|
Display* /* display */
|
||||||
) XIOErrorHandler;
|
);
|
||||||
|
|
||||||
extern XIOErrorHandler XSetIOErrorHandler (
|
extern XIOErrorHandler XSetIOErrorHandler (
|
||||||
XIOErrorHandler /* handler */
|
XIOErrorHandler /* handler */
|
||||||
|
@ -3876,13 +3876,13 @@ extern Bool XUnregisterIMInstantiateCallback(
|
||||||
XPointer /* client_data */
|
XPointer /* client_data */
|
||||||
);
|
);
|
||||||
|
|
||||||
typedef void function(
|
alias XConnectionWatchProc = void function(
|
||||||
Display* /* dpy */,
|
Display* /* dpy */,
|
||||||
XPointer /* client_data */,
|
XPointer /* client_data */,
|
||||||
int /* fd */,
|
int /* fd */,
|
||||||
Bool /* opening */, /* open or close flag */
|
Bool /* opening */, /* open or close flag */
|
||||||
XPointer* /* watch_data */ /* open sets, close uses */
|
XPointer* /* watch_data */ /* open sets, close uses */
|
||||||
)XConnectionWatchProc;
|
);
|
||||||
|
|
||||||
|
|
||||||
extern Status XInternalConnectionNumbers(
|
extern Status XInternalConnectionNumbers(
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
<ObjectsDirectory>obj/Debug</ObjectsDirectory>
|
<ObjectsDirectory>obj/Debug</ObjectsDirectory>
|
||||||
<Externalconsole>true</Externalconsole>
|
<Externalconsole>true</Externalconsole>
|
||||||
<Target>StaticLibrary</Target>
|
<Target>StaticLibrary</Target>
|
||||||
|
<ExtraCompilerArguments>-version=USE_OPENGL
|
||||||
|
</ExtraCompilerArguments>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<OutputPath>bin\Release</OutputPath>
|
<OutputPath>bin\Release</OutputPath>
|
||||||
|
@ -171,6 +173,8 @@
|
||||||
<Compile Include="..\DerelictFI\source\derelict\freeimage\types.d">
|
<Compile Include="..\DerelictFI\source\derelict\freeimage\types.d">
|
||||||
<Link>3rdparty\DerelictFI\types.d</Link>
|
<Link>3rdparty\DerelictFI\types.d</Link>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="3rdparty\X11\X.d" />
|
||||||
|
<Compile Include="3rdparty\X11\Xlib.d" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="src\dlangui\platforms\x11\" />
|
<Folder Include="src\dlangui\platforms\x11\" />
|
||||||
|
|
|
@ -8,6 +8,7 @@ version (linux) {
|
||||||
pragma(lib, "xcb");
|
pragma(lib, "xcb");
|
||||||
pragma(lib, "xcb-shm");
|
pragma(lib, "xcb-shm");
|
||||||
pragma(lib, "xcb-image");
|
pragma(lib, "xcb-image");
|
||||||
|
pragma(lib, "X11-xcb");
|
||||||
pragma(lib, "X11");
|
pragma(lib, "X11");
|
||||||
pragma(lib, "dl");
|
pragma(lib, "dl");
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -20,7 +20,20 @@ version(linux) {
|
||||||
import dlangui.graphics.images;
|
import dlangui.graphics.images;
|
||||||
import dlangui.widgets.styles;
|
import dlangui.widgets.styles;
|
||||||
import dlangui.platforms.common.platform;
|
import dlangui.platforms.common.platform;
|
||||||
|
|
||||||
|
version (USE_OPENGL) {
|
||||||
|
import dlangui.graphics.glsupport;
|
||||||
|
}
|
||||||
|
|
||||||
|
import derelict.opengl3.gl3;
|
||||||
|
import derelict.opengl3.glx;
|
||||||
|
|
||||||
|
extern (System)
|
||||||
|
xcb_connection_t *XGetXCBConnection(std.c.linux.X11.Xlib.Display *dpy);
|
||||||
|
enum XEventQueueOwner { XlibOwnsEventQueue = 0, XCBOwnsEventQueue };
|
||||||
|
extern (System)
|
||||||
|
void XSetEventQueueOwner(std.c.linux.X11.Xlib.Display *dpy, XEventQueueOwner owner);
|
||||||
|
|
||||||
class XCBWindow : Window {
|
class XCBWindow : Window {
|
||||||
xcb_window_t _w;
|
xcb_window_t _w;
|
||||||
xcb_gcontext_t _g;
|
xcb_gcontext_t _g;
|
||||||
|
@ -298,9 +311,12 @@ version(linux) {
|
||||||
private __gshared xcb_connection_t * _xcbconnection;
|
private __gshared xcb_connection_t * _xcbconnection;
|
||||||
private __gshared xcb_screen_t * _xcbscreen;
|
private __gshared xcb_screen_t * _xcbscreen;
|
||||||
private __gshared ubyte _xcbscreendepth;
|
private __gshared ubyte _xcbscreendepth;
|
||||||
|
private __gshared bool _enableOpengl;
|
||||||
|
private __gshared std.c.linux.X11.Xlib.Display * _display;
|
||||||
|
|
||||||
class XCBPlatform : Platform {
|
class XCBPlatform : Platform {
|
||||||
this() {
|
this() {
|
||||||
|
|
||||||
}
|
}
|
||||||
~this() {
|
~this() {
|
||||||
foreach(ref XCBWindow wnd; _windowMap) {
|
foreach(ref XCBWindow wnd; _windowMap) {
|
||||||
|
@ -311,15 +327,62 @@ version(linux) {
|
||||||
disconnect();
|
disconnect();
|
||||||
}
|
}
|
||||||
void disconnect() {
|
void disconnect() {
|
||||||
if (_xcbconnection) {
|
/* Cleanup */
|
||||||
|
if (_display) {
|
||||||
|
Log.d("Closing X display");
|
||||||
|
std.c.linux.X11.Xlib.XCloseDisplay(_display);
|
||||||
|
_display = null;
|
||||||
|
} else if (_xcbconnection) {
|
||||||
|
Log.d("Closing XCB connection");
|
||||||
/* close connection to server */
|
/* close connection to server */
|
||||||
xcb_disconnect(_xcbconnection);
|
xcb_disconnect(_xcbconnection);
|
||||||
|
_xcbconnection = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
bool connect() {
|
bool connect() {
|
||||||
Log.d("Opening connection");
|
|
||||||
/* open connection with the server */
|
try {
|
||||||
_xcbconnection = xcb_connect(null,null);
|
DerelictGL3.load();
|
||||||
|
_enableOpengl = true;
|
||||||
|
} catch (Exception e) {
|
||||||
|
Log.e("Cannot load opengl library", e);
|
||||||
|
}
|
||||||
|
// X
|
||||||
|
import std.c.linux.X11.Xlib;
|
||||||
|
int default_screen;
|
||||||
|
|
||||||
|
if (_enableOpengl) {
|
||||||
|
Log.d("Opening display via XLib");
|
||||||
|
/* Open Xlib Display */
|
||||||
|
_display = XOpenDisplay(null);
|
||||||
|
if (!_display)
|
||||||
|
{
|
||||||
|
Log.e("Failed to open display using Xlib");
|
||||||
|
_enableOpengl = false;
|
||||||
|
} else {
|
||||||
|
// display is opened
|
||||||
|
default_screen = DefaultScreen(_display);
|
||||||
|
Log.d("Opened display =");
|
||||||
|
/* Get the XCB connection from the display */
|
||||||
|
_xcbconnection = XGetXCBConnection(_display);
|
||||||
|
if (!_xcbconnection)
|
||||||
|
{
|
||||||
|
XCloseDisplay(_display);
|
||||||
|
_display = null;
|
||||||
|
Log.e("Failed to get XCB connection from Xlib display");
|
||||||
|
_enableOpengl = false;
|
||||||
|
} else {
|
||||||
|
/* Acquire event queue ownership */
|
||||||
|
XSetEventQueueOwner(_display, XEventQueueOwner.XCBOwnsEventQueue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_xcbconnection is null) {
|
||||||
|
Log.d("Opening XCB connection");
|
||||||
|
/* open connection with the server */
|
||||||
|
_xcbconnection = xcb_connect(null,null);
|
||||||
|
}
|
||||||
if (xcb_connection_has_error(_xcbconnection)) {
|
if (xcb_connection_has_error(_xcbconnection)) {
|
||||||
Log.e("Cannot open display");
|
Log.e("Cannot open display");
|
||||||
_xcbconnection = null;
|
_xcbconnection = null;
|
||||||
|
@ -328,9 +391,21 @@ version(linux) {
|
||||||
//XSetEventQueueOwner(display, XCBOwnsEventQueue);
|
//XSetEventQueueOwner(display, XCBOwnsEventQueue);
|
||||||
Log.d("Getting first screen");
|
Log.d("Getting first screen");
|
||||||
/* get the first screen */
|
/* get the first screen */
|
||||||
_xcbscreen = xcb_setup_roots_iterator( xcb_get_setup(_xcbconnection) ).data;
|
|
||||||
_xcbscreendepth = xcb_aux_get_depth(_xcbconnection, _xcbscreen);
|
if (_enableOpengl) {
|
||||||
|
/* Find XCB screen */
|
||||||
|
//xcb_screen_t *screen = null;
|
||||||
|
xcb_screen_iterator_t screen_iter =
|
||||||
|
xcb_setup_roots_iterator(xcb_get_setup(_xcbconnection));
|
||||||
|
for(int screen_num = default_screen;
|
||||||
|
screen_iter.rem && screen_num > 0;
|
||||||
|
--screen_num, xcb_screen_next(&screen_iter)) {
|
||||||
|
}
|
||||||
|
_xcbscreen = screen_iter.data;
|
||||||
|
} else {
|
||||||
|
_xcbscreen = xcb_setup_roots_iterator( xcb_get_setup(_xcbconnection) ).data;
|
||||||
|
}
|
||||||
|
_xcbscreendepth = xcb_aux_get_depth(_xcbconnection, _xcbscreen);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
XCBWindow getWindow(xcb_window_t w) {
|
XCBWindow getWindow(xcb_window_t w) {
|
||||||
|
|
Loading…
Reference in New Issue