0
votes
2answers
68 views

Making a screenshot using Xlib and Cairo libs [fail]

I'm trying to make a screenshot using Xlib and Cairo, however I'm not sure to do it the good way, "stride" is really confusing me. Here's the code : #include <stdio.h> #include ...
0
votes
0answers
188 views

Migrating from xlib to xcb, drawing

Edit: I modified the code a little to take out some unnecessary stuff, for some reason before I needed to use fillrectangle so the window was drawn correctly i tested and now works fine for some ...
4
votes
1answer
117 views

How to draw on an X11 Drawable with Cairo in Haskell

I recently made my first steps in X11 programming in Haskell and now I want to draw texts using Cairo/Pango. I found some C tutorials and it seems as I need to create an Xlib surface using ...
0
votes
0answers
67 views

Setting a background image in Screensaver window

I'm hacking a screensaver, Fuzzyflakes, to draw a picture of clouds on the background. What I'm trying to do is first load a picture with cairo_image_surface_create_from_png(). Once I get a ...
0
votes
1answer
276 views

Invalid X11-Window-ID if I want to close a Window I opened before. (C/C++)

I have a problem with X11. I created a normal Window and when I click onto a button I want to open a subwindow and draw something on it using cairo. This is how I create the window: ...
1
vote
1answer
205 views

I need to draw a line moving with the cursor, but I want to avoid redrawing the whole window every 100ms

I have a program which displays a ruler on the screen, and with Xlib it polls for the cursor position every 100ms and updates the display. The display consists of numbers/lines etc, in particular a ...
3
votes
1answer
261 views

How does compositor work on X?

I am trying to understand how compositors work on X (well basically because neither xcompmgr nor cairo-compmgr can draw shadow properly for my awesome wm~~~) I have read part of the source code both ...