Mercurial > games > semicongine
view semiconginev2/thirdparty/x11/xinerama.nim @ 1239:69489a678141
add: better syncing, better swapchain access, correct font offset, two font-rendering tests
author | sam <sam@basx.dev> |
---|---|
date | Mon, 22 Jul 2024 00:46:10 +0700 |
parents | 56781cc0fc7c |
children |
line wrap: on
line source
# Converted from X11/Xinerama.h import xlib const xineramaLib = "libXinerama.so" type PXineramaScreenInfo* = ptr XineramaScreenInfo XineramaScreenInfo*{.final.} = object screen_number*: cint x_org*: int16 y_org*: int16 width*: int16 height*: int16 proc XineramaQueryExtension*(dpy: PDisplay, event_base: Pcint, error_base: Pcint): XBool{. cdecl, dynlib: xineramaLib, importc.} proc XineramaQueryVersion*(dpy: PDisplay, major: Pcint, minor: Pcint): Status{. cdecl, dynlib: xineramaLib, importc.} proc XineramaIsActive*(dpy: PDisplay): XBool{.cdecl, dynlib: xineramaLib, importc.} proc XineramaQueryScreens*(dpy: PDisplay, number: Pcint): PXineramaScreenInfo{. cdecl, dynlib: xineramaLib, importc.}