Tagged Questions
5
votes
1answer
192 views
Aligned struct not available globally
I have a small bare metal program for the Raspberry Pi which draws to the screen.
I am using C, with GCC as the compiler, and Yagarto as the ARM tool chain.
Currently, I have a header (gpu.h) which ...
1
vote
2answers
416 views
How to do simple shape drawing in GTK?
I am new to Gtk and want to do simple drawing of shapes like circles and rectangles. I was looking at the gnome tutorial and the hello word example. However the curves section is undocumented. I was ...
0
votes
1answer
276 views
Win32 C/C++ add a button to desktop
Hi long time ago I saw a program made in C++ that created a button and docked in on the top left corner of the desktop so that the Desktop itself was re-sized to accommodate the new control. But I ...
0
votes
3answers
605 views
opengl+glut glutPostRedisplay where?
I'm programming in C with GLUT and OPENGL, i want my window redrawing itself again and again. I know that i can rerender with glutPostRedisplay(), if I put it in the idle function of Glut my pc lags ...
5
votes
6answers
4k views
Linux: Fastest way to draw
I need to draw an 2d-array of color triplets on the screen, what is the fastest way of doing that?
The target language is C/C++ and the program has only to work on Linux, but platform independant ...