Tagged Questions

2
votes
1answer
196 views

Top level window on X Window System

I want to print on the screen the information about Top level windows under Linux. I use the xlib functions. I successfully recurse from the root window to print all the informations about all the ...
1
vote
2answers
273 views

Video decoding and rendering library for XLib

Currently what I have a Linux application that was written using Xlib and I needed to add video playing capabilities into it. What libraries would you recommend that I could use for video decoding ...
-2
votes
1answer
210 views

How to draw an image from file on window with Xlib

This is my code: int main() { Display *d = XOpenDisplay(0); unsigned int bitmap_width, bitmap_height; int x, y; Pixmap bitmap; if ( d ) { Window w = XCreateWindow(d, ...