Tagged Questions
0
votes
0answers
147 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[] = {
...
9
votes
1answer
245 views
How do I use the xlib and OpenGL modules together with python?
I know it is possible to use Xlib and OpenGL together, with GLX (I've done it myself in C).
The problem is, how do I do this in python? The OpenGL module has GLX functionality [documentation], but ...
1
vote
2answers
131 views
Xlib keyboard polling
I'm working on a multi-platform OpenGL application, for which I'm using Xlib under Linux. I understand that Xlib input handling is strongly event-based, but my program already does its own event ...
0
votes
1answer
272 views
glXMakeCurrent never returns in multiple multithreaded linux opengl applications
I am running 3 instances of a JUCE-based multithreaded OpenGL application on one machine - each of the instances is connected to a separate X display. The main application thread calls XInitThreads ...
0
votes
1answer
266 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, ...
1
vote
1answer
632 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)
...
1
vote
1answer
399 views
X11 Fullscreen window (OpenGL)
I'm writing and OpenGL application on linux (Ubuntu 11.10) using Xlib (X11). What is the simplest way to implement toggle between windowed and fullscreen mode?
1
vote
3answers
2k views
GLEW build fail
I need to load extensions in Ubuntu 11.10. I tried building GLEW but I get the following odd error...
~/Downloads/glew-1.7.0$ make
cc -shared -Wl,-soname=libGLEW.so.1.7 -o lib/libGLEW.so.1.7.0 ...
1
vote
1answer
11k 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
356 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 ...
4
votes
2answers
978 views
minimize fullscreen Xlib OpenGL Window
I'm currently trying to enable alt-tabbing out of my fullscreen Xlib OpenGL window, but am having some difficulties. I've tried XUnmapWindow(..), which kindof works, but the resolution does not reset ...
0
votes
0answers
3k views
Xlib Fatal IO Error: 11 (resource temporarily unavailable)
FIXED: The error is simply becuase I quit the application without closing the display using XCloseDisplay(). And the reason i didnt get anything appearing on the screen was because the values for ...
2
votes
1answer
811 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 ...
2
votes
1answer
280 views
UI utility library for OpenGL 3+, or is Xlib ok?
I want to write some OpenGL 3.2, likely also OpenGL 4 stuff on Linux, and I just saw that libsdl 1.2 (the latest stable release) supports only 2.x. LibSDL 1.3 (which is in development) should support ...
1
vote
0answers
115 views
How to handle “switch from” and “switch to” events in X11?
I'm making a fullscreen OpenGL application, and I want it to restore original desktop mode when user switches away from it, and to restore mode back when user switches to it.
This looks like "FocusIn" ...
