GLX (initialism for "OpenGL Extension to the X Window System") provides the interface connecting OpenGL and the X Window System: it enables programs wishing to use OpenGL to do so within a window provided by the X Window System.

learn more… | top users | synonyms

0
votes
1answer
7 views

Disable vertical sync for glxgears

Sometimes you need to check whether you Linux 3D acceleration is really working (besides the glxinfo output). This can be quickly done by the glxgears tool. However, the FPS are often limited to the ...
0
votes
1answer
31 views

glwMDrawingAreaWidgetClass visible via X11 forwarding?

I'm developing on a Linux machine using TeleUSE. I PuTTY to the machine to do my work. I have X11 forwarding on and Xming running. I can't seem to see the OpenGL part of the window if I'm running ...
0
votes
2answers
74 views

glXMakeCurrent give me Bad Match

I'm having some trouble to have a rendering system working on both Windows and Linux platforms. On Windows platform it works like a sharm, while on Linux my application terminates with the following ...
0
votes
1answer
54 views

Thread for loading graphics content

I'm creating game engine. On windows I had two threads with two contexts that were shared (using wglShareLists). It worked fine. While one thread loaded resources, other was rendering simple loading ...
0
votes
0answers
28 views

How to get GLXcontext from GdkGLContext?

To set up OpenCL/OpenGL sharing with X/GLX, you need to get a pointer to the GLXcontext in use. In GTK you deal with a GdkGLContext struct which presumably wraps the GLXcontext. How should one get the ...
0
votes
0answers
162 views

bind window pixmap to texture using GLX_EXT_texture_from_pixmap in opengl

i want to know how to bind a window pixmap to a OpenGL Texture using the GLX_EXT_texture_from_pixmap extension , i don't get it to work, this is my code: const int pixmap_config[] = { ...
0
votes
1answer
37 views

glxMakeCurrent giving Segmentation Fault

what could be the reasons of glXMakeCurrent giving segmentation fault?
0
votes
0answers
29 views

XCreateWindow copying of data

How to copy bitmapdata to Xwindow with XCreateWindow as drawable.
0
votes
0answers
19 views

GlXSurface copy

I am very new to Xwindow and Glx, i am getting strucked up in copying the data , here is my question. I have a drawable X window(XCreateWindow), i have a byteArray of pixels, how can i use this ...
0
votes
0answers
373 views

Why always Loading extension GLX..?

I use archlinux in virtualBox。I have install virtualbox-guest-utils。But when starx,it always Loading extension GLX...Why?
0
votes
0answers
76 views

Certain GLX calls in one dynamic library segfault unless first called in another library

I'm trying to create an application which uses OpenGL but dynamically chooses the window system, window system binding, and OpenGL profile (i.e. Xlib+GLX+OpenGL, Xlib+EGL+OpenGL, Xlib+EGL+OpenGLES, ...
0
votes
0answers
238 views

NV-GLX missing extension in OS X Lion

I connect to a remote linux machine using "ssh -X machine", and then I run a graphical application, so its window is displayed on my local OS X Lion machine using X Window. I get the error "Xlib: ...
0
votes
0answers
253 views

Stereo 3D Rendering issue with OpenGL

I am trying to draw a basic mesh loaded from an .obj file using stereoscopic 3D rendering on a NVIDIA Quadro 5000. From what I can tell I think I got my left eye and right eye frustums and offsets set ...
4
votes
1answer
518 views

Creating an OpenGL 4.3 Context Crashes GLX

I'm using SDL2 and C++11 to build a game engine (just as a personal project, for fun and for practice), and one of the things I want to do is try and have the graphics driver use the latest supported ...
-2
votes
2answers
299 views

Correctly linking GLX library in Ubuntu

I'm trying to compile one of these mixes of X11 + OpenGL, but I'm not having luck with the compiler. In particular, I get: undefined symbol: glXMakeCurrent I have tried -lX11 -lGLU -lGL ...
1
vote
0answers
274 views

Virtual machine with support for OpenGL

We have an application that we want to compile, auto-build and auto-test on an virtual machine. The virtual machine "provider" has to be able to be cross-platform as we require this operation to be ...
0
votes
0answers
167 views

Xvfb, /tmp/.X11-unix should be set to root

When running Xvfb remotely with -extension GLX, I get _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root. I do not get this problem when running Xvfb locally, only when I SSH onto ...
0
votes
2answers
307 views

XSetWMProtocols and glXCreateContext calling order in a Multithreaded environment

Edit: I posted a nice solution to the whole renderer separation problem in general below. I am recently playing around with OpenGL in a multithreaded X11 environment. I found the following tutorial, ...
0
votes
1answer
188 views

glXCreateWindow doesn't work when VISUAL_ID and screen->root_visual aren't equal

I'm working on code very similar to this: http://xcb.freedesktop.org/opengl/ It works fine when I use the default framebuffer configuration, although when I try to query a certain one it fails. I've ...
0
votes
1answer
282 views

Memory leak using glXCreateContext

I have created a class to initialize and clear Xlib and glx properly.  OpenGLContext::OpenGLContext() :m_display(nullptr) ,m_context(nullptr) ,m_vi(nullptr) { memset(&m_cmap, 0, ...
2
votes
2answers
2k views

“X Error” BadAlloc GLX BadContext on IntelSandyBridge (Intel HD Graphics 3000)

I'm running a debian stable ThinkPad X1 (1294-3QG) with exactly three packages from squeeze-backports needed for the GraphicsModi: initramfs-tools 0.99~bpo60+1 linux-base 3.4~bpo60+1 ...
2
votes
1answer
135 views

What is the purpose of 'framebuffer' when setting up a GL context?

In this example code it deals with framebuffers before setting up the context. I've read the man pages of the functions, but I still don't understand exactly what's going on. So my question is, what ...
1
vote
1answer
1k views

OpenGL Rendering Context Produces “opcode of failed request 152 (GLX)” (Mesa 8.0 - OpenGL 3.0, Linux)

This one is a huge issue: first off, while I know a little bit about the XLib API, I wanted to test and make sure I could actually create an OpenGL rendering context (3.0) before I did anything, thus ...
0
votes
1answer
189 views

Call to XCreateColormap Creates Segmentation Fault

For some reason, my Call to XCreateColormap in XLib is giving me a segmentation fault. The funny thing is that most of the code that I've used is almost identical to the code that I've seen on the net ...
0
votes
1answer
438 views

Using GLX on Multiple Monitors RHEL — OpenGL, XLib, and Multiple Monitors (with threads)

The problem I am facing is that I have a glx based application that will render basic primitives on a single thread just fine. I can move the XWindow between both Screens and my rendering loop keeps ...
1
vote
1answer
322 views

glXCreateContextAttribsARB not found (on OpenGL 4.2 driver, GLX 1.4)

Strangely enough, despite the fact that I have GLX 1.4, it appears that I don't have glXCreateContextAttribsARB in my repos. I wonder if there's any reasonable explanation for this? This can't be a ...
0
votes
1answer
311 views

How to link GLX?

I'm trying to find the compiler flag for linking GLX on a Linux based system. So far, I have (in qt Creator): unix:LIBS += -lglx -lX11 -lGLEW -lGLU -lGL -lXext -L/usr/X11R6/lib But, that still ...
1
vote
1answer
680 views

XLib with GLX Error Produced when Calling XCreateWindow()

Edited and simplified from original post: I am getting the following error: X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 1 (X_CreateWindow) ...
7
votes
5answers
1k views

X11/GLX - Fullscreen mode?

I am trying to create a Linux application - a screensaver, in this case - and it is proving remarkably difficult to find information on the simple task of making a window full-screen. Even the code of ...
2
votes
1answer
2k views

Libgdx not using Opengl ES 2.0

Preferably, I'd like to use OpenGL ES 2.0 for a new 3d game I started making. Anyway, I've been developing it on an Ubuntu PC (not top-of-the-line but decent) I bought in 2010. ...
1
vote
1answer
146 views

Rendering into GLX back buffer with X calls?

I'm playing around with GLX and xlib and I'm curious about rendering using straight X calls on top of an openGL buffer. The glx intro clearly says that: GLX extended X servers make a subset of ...
1
vote
2answers
54 views

Simple way to determine if my application is connected to a local X-server?

When creating a GLX context, you have to specify whether you want direct rendering or not. Direct rendering provides a performance advantage sometimes, so it's preferable to use that, but it can't be ...
0
votes
2answers
196 views

glXChooseVisual fails when using Mono-C# on linux

When I call "glXChooseVisual" (aka GLX.ChooseVisual in C#) it returns a null IntPtr. Now what confuses me is when I build the NeHe lesson02 basically using the same code it works (the only difference ...
1
vote
1answer
12k views

OpenGL GLX extension not supported

I had installed OpenGL and freeglut in Ubuntu 10.04 and it worked fine in 10.04 and 10.10. But after I upgraded to 11.04, the applications I've developed using OpenGL is not running properly. They're ...
0
votes
1answer
363 views

Set a image(jpeg | png) backgound using GLX ( opengl and Xlib)

I create a x11 window with opengl functionality, i need to load a image(jpeg | png) on its background where size of window be bigger than image, it doesn't matter. I surfed to get resylts like use ...
0
votes
1answer
368 views

Multithreaded game program suddenly locks up on glXSwapBuffers

I'm polishing up a Linux game program I wrote, and after about 10 minutes of playing, it suddenly slows down to 1 frame per thirty seconds or so, slowing the entire system down as well. Even after ...
2
votes
1answer
823 views

How to create OpenGL-enabled window with transparent background using xlib and glx

I'd like to create a window with transparent background and then render something onto it using OpenGL. I don't want to use the trick where whatever is behind the window is captured and then painted ...
0
votes
1answer
404 views

Drawing in several windows with gl/glx

I am looking at the NeHe OpenGL tutorials (nehe.gamedev.net), which as almost every example also for Linux/glx. But how can open several windows and draw into all of them? Thanks!
1
vote
1answer
927 views

Rendering OpenGL FBO Texture to GLXPixmap

I'm writing some code which is intended to: 1. Render into an OpenGL texture using an FBO. 2. Draw from the FBO texture to a GLXPixmap, which is attached to an X Pixmap. 3. Draw the X Pixmap to a ...
2
votes
1answer
575 views

Why does my simple GLX app leak memory?

The code below shows a small 48 byte leak in valgrind. #include <X11/Xlib.h> #include <GL/glx.h> #include <unistd.h> int main( int argc, char* argv[] ) { Display* _display; ...
3
votes
2answers
2k views

OpenGL Colorspace Conversion

Does anyone know how to create a texture with a YUV colorspace so that we can get hardware based YUV to RGB colorspace conversion without having to use a fragment shader? I'm using an NVidia 9400 and ...
0
votes
2answers
860 views

Create GLX context in specific region of a window

I would like to create an OpenGL context with GLX inside a window. However, I do not want it to span over the whole window region. Instead, it should only cover a subregion. For example, GLUT ...