Home
last modified time | relevance | path

Searched refs:libX11 (Results 1 – 25 of 26) sorted by relevance

12

/external/swiftshader/src/WSI/
DlibX11.cpp29 LibX11exports::LibX11exports(void *libX11, void *libXext) in LibX11exports() argument
31 getFuncAddress(libX11, "XOpenDisplay", &XOpenDisplay); in LibX11exports()
32 getFuncAddress(libX11, "XGetWindowAttributes", &XGetWindowAttributes); in LibX11exports()
33 getFuncAddress(libX11, "XDefaultScreenOfDisplay", &XDefaultScreenOfDisplay); in LibX11exports()
34 getFuncAddress(libX11, "XWidthOfScreen", &XWidthOfScreen); in LibX11exports()
35 getFuncAddress(libX11, "XHeightOfScreen", &XHeightOfScreen); in LibX11exports()
36 getFuncAddress(libX11, "XPlanesOfScreen", &XPlanesOfScreen); in LibX11exports()
37 getFuncAddress(libX11, "XDefaultGC", &XDefaultGC); in LibX11exports()
38 getFuncAddress(libX11, "XDefaultDepth", &XDefaultDepth); in LibX11exports()
39 getFuncAddress(libX11, "XMatchVisualInfo", &XMatchVisualInfo); in LibX11exports()
[all …]
DXlibSurfaceKHR.cpp27 gc = libX11->XDefaultGC(pDisplay, screen); in XlibSurfaceKHR()
30 Status status = libX11->XMatchVisualInfo(pDisplay, screen, 32, TrueColor, &xVisual); in XlibSurfaceKHR()
32 visual = match ? xVisual.visual : libX11->XDefaultVisual(pDisplay, screen); in XlibSurfaceKHR()
49 libX11->XGetWindowAttributes(pDisplay, window, &attr); in getSurfaceCapabilities()
61 libX11->XGetWindowAttributes(pDisplay, window, &attr); in attachImage()
68 …XImage *xImage = libX11->XCreateImage(pDisplay, visual, attr.depth, ZPixmap, 0, buffer, extent.wid… in attachImage()
95 libX11->XGetWindowAttributes(pDisplay, window, &attr); in present()
104 libX11->XPutImage(pDisplay, window, gc, xImage, 0, 0, 0, 0, extent.width, extent.height); in present()
DlibX11.hpp25 LibX11exports(void *libX11, void *libXext);
66 extern LibX11 libX11;
DBUILD.gn42 "libX11.cpp",
43 "libX11.hpp",
DCMakeLists.txt39 libX11.cpp
40 libX11.hpp
/external/swiftshader/src/Main/
DlibX11.cpp19 LibX11exports::LibX11exports(void *libX11, void *libXext) in LibX11exports() argument
21 XOpenDisplay = (Display *(*)(char*))getProcAddress(libX11, "XOpenDisplay"); in LibX11exports()
22 …XGetWindowAttributes = (Status (*)(Display*, Window, XWindowAttributes*))getProcAddress(libX11, "X… in LibX11exports()
23 XDefaultScreenOfDisplay = (Screen *(*)(Display*))getProcAddress(libX11, "XDefaultScreenOfDisplay"); in LibX11exports()
24 XWidthOfScreen = (int (*)(Screen*))getProcAddress(libX11, "XWidthOfScreen"); in LibX11exports()
25 XHeightOfScreen = (int (*)(Screen*))getProcAddress(libX11, "XHeightOfScreen"); in LibX11exports()
26 XPlanesOfScreen = (int (*)(Screen*))getProcAddress(libX11, "XPlanesOfScreen"); in LibX11exports()
27 XDefaultGC = (GC (*)(Display*, int))getProcAddress(libX11, "XDefaultGC"); in LibX11exports()
28 XDefaultDepth = (int (*)(Display*, int))getProcAddress(libX11, "XDefaultDepth"); in LibX11exports()
29 …XMatchVisualInfo = (Status (*)(Display*, int, int, int, XVisualInfo*))getProcAddress(libX11, "XMat… in LibX11exports()
[all …]
DFrameBufferX11.cpp49 x_display = libX11->XOpenDisplay(0); in FrameBufferX11()
54 x_gc = libX11->XDefaultGC(x_display, screen); in FrameBufferX11()
55 int depth = libX11->XDefaultDepth(x_display, screen); in FrameBufferX11()
58 Status status = libX11->XMatchVisualInfo(x_display, screen, 32, TrueColor, &x_visual); in FrameBufferX11()
60 Visual *visual = match ? x_visual.visual : libX11->XDefaultVisual(x_display, screen); in FrameBufferX11()
62 mit_shm = (libX11->XShmQueryExtension && libX11->XShmQueryExtension(x_display) == True); in FrameBufferX11()
66 x_image = libX11->XShmCreateImage(x_display, visual, depth, ZPixmap, 0, &shminfo, width, height); in FrameBufferX11()
72 PreviousXErrorHandler = libX11->XSetErrorHandler(XShmErrorHandler); in FrameBufferX11()
73 libX11->XShmAttach(x_display, &shminfo); // May produce a BadAccess error in FrameBufferX11()
74 libX11->XSync(x_display, False); in FrameBufferX11()
[all …]
DlibX11.hpp25 LibX11exports(void *libX11, void *libXext);
65 extern LibX11 libX11;
DCMakeLists.txt42 libX11.cpp
43 libX11.hpp
DBUILD.gn68 "libX11.cpp",
/external/vulkan-validation-layers/cmake/
DFindX11_XCB.cmake1 # - Try to find libX11-xcb
4 # X11_XCB_FOUND - system has libX11-xcb
5 # X11_XCB_LIBRARIES - Link these to use libX11-xcb
6 # X11_XCB_INCLUDE_DIR - the libX11-xcb include dir
7 # X11_XCB_DEFINITIONS - compiler switches required for using libX11-xcb
/external/swiftshader/src/OpenGL/libEGL/
DDisplay.cpp71 if(!nativeDisplay && dpy != HEADLESS_DISPLAY && libX11 && libX11->XOpenDisplay) in get()
73 nativeDisplay = libX11->XOpenDisplay(NULL); in get()
93 if(nativeDisplay && libX11->XCloseDisplay) in ~Display()
95 libX11->XCloseDisplay((::Display*)nativeDisplay); in ~Display()
682 …Status status = libX11->XGetWindowAttributes((::Display*)nativeDisplay, window, &windowAttributes); in isValidWindow()
850 Screen *screen = libX11->XDefaultScreenOfDisplay((::Display*)nativeDisplay); in getDisplayFormat()
851 unsigned int bpp = libX11->XPlanesOfScreen(screen); in getDisplayFormat()
DBUILD.gn90 sources += [ "../../Main/libX11.cpp" ]
DSurface.cpp351 …Status status = libX11->XGetWindowAttributes((::Display*)display->getNativeDisplay(), window, &win… in checkForResize()
DlibEGL.cpp158 if(!libX11) in GetDisplay()
1132 libX11->XSync((::Display*)display->getNativeDisplay(), False); in WaitNative()
1338 if(!libX11) in GetPlatformDisplay()
/external/libxkbcommon/
DREADME.md44 The dataset for Compose is distributed in libX11, as part of the X locale
DPACKAGING31 - (runtime) libX11.
DNEWS132 Note that libX11 still only searches in $HOME/.XCompose.
571 This matches the behavior of libX11's XLookupString(3), and
578 to libX11. The previous behavior caused a bug where Shift would
/external/libxkbcommon/doc/
Dcompat.md50 Relative to the standard implementation in libX11 (described in the
/external/libepoxy/
Dconfigure.ac234 AC_MSG_ERROR([libX11 headers (libx11-dev) are required to build with GLX support])
/external/ImageMagick/
DImageMagick.spec.in20 BuildRequires: libX11-devel, libXext-devel, libXt-devel
Dconfigure27471 if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" &&
27472 test -f "$ac_im_libdir/libX11.$ac_extension"; then
27581 if test -r "$ac_dir/libX11.$ac_extension"; then
/external/mtools/
Dconfigure5810 if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" &&
5811 test -f "$ac_im_libdir/libX11.$ac_extension"; then
5920 if test -r "$ac_dir/libX11.$ac_extension"; then
/external/swiftshader/src/Vulkan/
DlibVulkan.cpp327 …K_KHR_XLIB_SURFACE_EXTENSION_NAME, VK_KHR_XLIB_SURFACE_SPEC_VERSION }, static_cast<bool>(libX11) },
/external/libabigail/tests/data/test-read-dwarf/
Dtest18-pr19037-libvtkRenderingLIC-6.1.so.abi24 <dependency name='libX11.so.6'/>

12