/third_party/glfw/src/ |
H A D | glx_context.c | 126 if (_glfw.glx.ARB_multisample) in chooseGLXFBConfig() 129 if (_glfw.glx.ARB_framebuffer_sRGB || _glfw.glx.EXT_framebuffer_sRGB) in chooseGLXFBConfig() 164 window->context.glx.window, in makeContextCurrentGLX() 165 window->context.glx.handle)) in makeContextCurrentGLX() 187 glXSwapBuffers(_glfw.x11.display, window->context.glx.window); in swapBuffersGLX() 195 if (_glfw.glx.EXT_swap_control) in swapIntervalGLX() 197 _glfw.glx.SwapIntervalEXT(_glfw.x11.display, in swapIntervalGLX() 198 window->context.glx.window, in swapIntervalGLX() 201 else if (_glfw.glx in swapIntervalGLX() [all...] |
H A D | x11_platform.h | 415 #define glXGetFBConfigs _glfw.glx.GetFBConfigs 416 #define glXGetFBConfigAttrib _glfw.glx.GetFBConfigAttrib 417 #define glXGetClientString _glfw.glx.GetClientString 418 #define glXQueryExtension _glfw.glx.QueryExtension 419 #define glXQueryVersion _glfw.glx.QueryVersion 420 #define glXDestroyContext _glfw.glx.DestroyContext 421 #define glXMakeCurrent _glfw.glx.MakeCurrent 422 #define glXSwapBuffers _glfw.glx.SwapBuffers 423 #define glXQueryExtensionsString _glfw.glx.QueryExtensionsString 424 #define glXCreateNewContext _glfw.glx [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/ |
H A D | FunctionsGLX.h | 15 #include "libANGLE/renderer/gl/glx/platform_glx.h" 40 glx::Context createContext(XVisualInfo *visual, glx::Context share, bool direct) const; 41 void destroyContext(glx::Context context) const; 42 Bool makeCurrent(glx::Drawable drawable, glx::Context context) const; 43 void swapBuffers(glx::Drawable drawable) const; 46 glx::Context getCurrentContext() const; 47 glx::Drawable getCurrentDrawable() const; 56 glx [all...] |
H A D | FunctionsGLX.cpp | 10 #include "libANGLE/renderer/gl/glx/FunctionsGLX.h" 13 // We can only include glx.h in files which do not include ANGLE's GLES 15 #include <GL/glx.h> 21 #include "libANGLE/renderer/gl/glx/functionsglx_typedefs.h" 299 glx::Context FunctionsGLX::createContext(XVisualInfo *visual, glx::Context share, bool direct) const in createContext() 303 return reinterpret_cast<glx::Context>(context); in createContext() 305 void FunctionsGLX::destroyContext(glx::Context context) const in destroyContext() 310 Bool FunctionsGLX::makeCurrent(glx::Drawable drawable, glx in destroyContext() [all...] |
H A D | DisplayGLX.h | 19 #include "libANGLE/renderer/gl/glx/FunctionsGLX.h" 90 void setSwapInterval(glx::Drawable drawable, SwapControlData *data); 104 egl::Error initializeContext(glx::FBConfig config, 106 glx::Context *context); 113 int getGLXFBConfigAttrib(glx::FBConfig config, int attrib) const; 114 egl::Error createContextAttribs(glx::FBConfig, 117 glx::Context *context); 121 std::map<int, glx::FBConfig> configIdToGLXConfig; 124 glx::FBConfig mContextConfig; 127 glx [all...] |
H A D | DisplayGLX.cpp | 9 #include "libANGLE/renderer/gl/glx/DisplayGLX.h" 22 #include "libANGLE/renderer/gl/glx/PbufferSurfaceGLX.h" 23 #include "libANGLE/renderer/gl/glx/PixmapSurfaceGLX.h" 24 #include "libANGLE/renderer/gl/glx/RendererGLX.h" 25 #include "libANGLE/renderer/gl/glx/WindowSurfaceGLX.h" 26 #include "libANGLE/renderer/gl/glx/glx_utils.h" 176 glx::FBConfig *allConfigs = mGLX.chooseFBConfig(attribList, &nConfigs); in initialize() 216 glx::FBConfig *candidates = mGLX.chooseFBConfig(attribList, &nConfigs); in initialize() 327 glx::Pbuffer workerPbuffer = mGLX.createPbuffer(mContextConfig, initPbufferAttribs); in initialize() 400 glx in makeCurrent() [all...] |
H A D | WindowSurfaceGLX.h | 12 #include "libANGLE/renderer/gl/glx/DisplayGLX.h" 13 #include "libANGLE/renderer/gl/glx/SurfaceGLX.h" 14 #include "libANGLE/renderer/gl/glx/platform_glx.h" 27 const FunctionsGLX &glx, 31 glx::FBConfig fbConfig); 57 glx::Drawable getDrawable() const override; 76 glx::FBConfig mFBConfig; 77 glx::Window mGLXWindow;
|
H A D | PixmapSurfaceGLX.h | 12 #include "libANGLE/renderer/gl/glx/SurfaceGLX.h" 13 #include "libANGLE/renderer/gl/glx/platform_glx.h" 26 const FunctionsGLX &glx, 27 glx::FBConfig fbConfig); 53 glx::Drawable getDrawable() const override; 60 glx::FBConfig mFBConfig; 62 glx::Pixmap mGLXPixmap;
|
H A D | PbufferSurfaceGLX.h | 12 #include "libANGLE/renderer/gl/glx/SurfaceGLX.h" 13 #include "libANGLE/renderer/gl/glx/platform_glx.h" 27 const FunctionsGLX &glx, 28 glx::FBConfig fbConfig); 54 glx::Drawable getDrawable() const override; 62 glx::FBConfig mFBConfig; 63 glx::Pbuffer mPbuffer;
|
H A D | PbufferSurfaceGLX.cpp | 9 #include "libANGLE/renderer/gl/glx/PbufferSurfaceGLX.h" 12 #include "libANGLE/renderer/gl/glx/DisplayGLX.h" 13 #include "libANGLE/renderer/gl/glx/FunctionsGLX.h" 22 const FunctionsGLX &glx, in PbufferSurfaceGLX() 23 glx::FBConfig fbConfig) in PbufferSurfaceGLX() 28 mGLX(glx), in PbufferSurfaceGLX() 135 glx::Drawable PbufferSurfaceGLX::getDrawable() const in getDrawable() 18 PbufferSurfaceGLX(const egl::SurfaceState &state, EGLint width, EGLint height, bool largest, const FunctionsGLX &glx, glx::FBConfig fbConfig) PbufferSurfaceGLX() argument
|
H A D | PixmapSurfaceGLX.cpp | 9 #include "libANGLE/renderer/gl/glx/PixmapSurfaceGLX.h" 14 #include "libANGLE/renderer/gl/glx/DisplayGLX.h" 15 #include "libANGLE/renderer/gl/glx/FunctionsGLX.h" 16 #include "libANGLE/renderer/gl/glx/glx_utils.h" 73 const FunctionsGLX &glx, in PixmapSurfaceGLX() 74 glx::FBConfig fbConfig) in PixmapSurfaceGLX() 78 mGLX(glx), in PixmapSurfaceGLX() 211 glx::Drawable PixmapSurfaceGLX::getDrawable() const in getDrawable() 70 PixmapSurfaceGLX(const egl::SurfaceState &state, Pixmap pixmap, Display *display, const FunctionsGLX &glx, glx::FBConfig fbConfig) PixmapSurfaceGLX() argument
|
H A D | WindowSurfaceGLX.cpp | 9 #include "libANGLE/renderer/gl/glx/WindowSurfaceGLX.h" 13 #include "libANGLE/renderer/gl/glx/DisplayGLX.h" 14 #include "libANGLE/renderer/gl/glx/FunctionsGLX.h" 25 const FunctionsGLX &glx, in WindowSurfaceGLX() 29 glx::FBConfig fbConfig) in WindowSurfaceGLX() 37 mGLX(glx), in WindowSurfaceGLX() 279 glx::Drawable WindowSurfaceGLX::getDrawable() const in getDrawable() 24 WindowSurfaceGLX(const egl::SurfaceState &state, const FunctionsGLX &glx, DisplayGLX *glxDisplay, Window window, Display *display, glx::FBConfig fbConfig) WindowSurfaceGLX() argument
|
H A D | SurfaceGLX.h | 13 #include "libANGLE/renderer/gl/glx/platform_glx.h" 24 virtual glx::Drawable getDrawable() const = 0;
|
/third_party/skia/third_party/externals/opengl-registry/xml/ |
H A D | Makefile | 26 # $(API)/GL/glx.h 53 $(GLXHEADERS): glx.xml $(PYFILES) 54 $(GENHEADERS) $@ -registry glx.xml 68 jing -c registry.rnc glx.xml
|
H A D | testglext.c | 9 #include <GL/glx.h>
|
/third_party/openGLES/xml/ |
H A D | Makefile | 15 # $(API)/GL/glx.h 46 $(GLXHEADERS): glx.xml $(PYFILES) 47 $(GENHEADERS) $@ -registry glx.xml 61 jing -c registry.rnc glx.xml
|
H A D | testglext.c | 9 #include <GL/glx.h>
|
/third_party/vk-gl-cts/framework/platform/lnx/X11/ |
H A D | tcuLnxX11GlxPlatform.hpp | 36 namespace glx namespace 41 } // glx
|
/third_party/skia/src/gpu/gl/glx/ |
H A D | GrGLMakeGLXInterface.cpp | 14 #include <GL/glx.h>
|
/third_party/skia/tools/sk_app/unix/ |
H A D | WindowContextFactory_unix.h | 17 #include <GL/glx.h>
|
/third_party/vk-gl-cts/framework/platform/lnx/ |
H A D | tcuLnxPlatform.cpp | 80 m_glPlatform.registerFactory(x11::glx::createContextFactory(m_eventState)); in LinuxPlatform()
|
/third_party/mesa3d/src/glx/ |
H A D | glx_query.c | 36 # include <xcb/glx.h>
|
H A D | clientinfo.c | 28 #include <xcb/glx.h>
|
/third_party/mesa3d/src/glx/apple/ |
H A D | apple_glx_context.h | 44 #include <GL/glx.h>
|
/third_party/skia/third_party/externals/imgui/examples/libs/glfw/include/GLFW/ |
H A D | glfw3native.h | 112 #include <GL/glx.h>
|