Tagged Questions
6
votes
3answers
1k views
Drawing text on a framebuffer in Linux from C
How can a program draw text on a frame buffer mapped in as an array? What is needed is both a means of representing the individual characters, and of drawing the characters pixel by pixel in a manner ...
4
votes
2answers
3k views
How to draw the graph in framebuffer using c language..?
i am new to this linux framebuffer so do anybody guide me to draw the line-graph in framebuffer. And i have the code to draw graph in turbo c but now in linux. So please help me out.
Thank You,
Rahul ...
3
votes
2answers
3k views
Paint Pixels to Screen via Linux FrameBuffer
I was recently struck by a curious idea to take input from /dev/urandom, convert relevant characters to random integers, and use those integers as the rgb/x-y values for pixels to paint onto the ...
3
votes
2answers
817 views
opengl invert framebuffer pixels
I was wondering was the best way to invert the color pixels in the frame buffer is. I know it's possible to do with glReadPixels() and glDrawPixels() but the performance hit of those calls is pretty ...
2
votes
2answers
262 views
Fastest way to draw characters in a console (framebuffer)?
What would be the fastest way to render characters in a framebuffer based console? I'm using the iso_font.h font from the XNU distribution.
Right now I'm using this code to render a character, but it ...
2
votes
1answer
114 views
read a pixel of the screen(i.e. 1024*768 which you can see now)
in Windows XP, C programming language
I want to read a pixel of the screen(i.e. 1024*768 which you can see now) in fast way
I think the framebuffer is the solution.
so
I tried
#include "SDL.h"
...
1
vote
3answers
170 views
Trying to implement Render to Texture
I'm having trouble implementing render to texture with OpenGL 3.
My issue is that after rendering to the frame buffer, it appears the rendered object becomes deformed, which may imply a bad ...
1
vote
2answers
226 views
How do I read the image currently on the framebuffer in Qt/C?
Is there any way I can read the content of the framebuffer in Qt or anyway in C? I read it is possible to write the content of /dev/fb0 to a file and then load it. But is it possible to avoid saving ...
1
vote
0answers
438 views
Writing to frame buffer [closed]
Possible Duplicate:
Writing to frame buffer
Hi All,
I'm using an i5 core with builtin graphics accelerator GMA-HD running on an RHEL 6.0 OS. I needed to test the graphics acceleration ...
1
vote
1answer
531 views
Writing to frame buffer
I'm using an i5 core with builtin graphics accelerator GMA-HD running on an RHEL 6.0 OS.
I needed to test the graphics acceleration capabilities of the graphics driver(which I found out was i915 in my ...
0
votes
1answer
224 views
Windows Mirror Driver for Linux Framebuffer
for a software i'm writing i need to know when the linux framebuffer gets updated.
I need something like Windows Mirror Drivers (for more infos look Mirror_driver on wikipedia).
Looking around i ...
0
votes
3answers
236 views
Is a fullscreen 8 bit framebuffer possible in X11, and if so, what am I doing wrong?
I'm trying to get a fullscreen 8 bit depth framebuffer but I can't find any visual to work with. I want 8 bit truecolor, where 3 bits are red, 3 bits are green and 2 bits are blue. I'm using XF86 to ...
0
votes
1answer
195 views
“Error in the program” Can anybody clear this error..? (LINUX FRAMEBUFFER PROGRAM)
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include <linux/fb.h>
#include <sys/mman.h>
int main()
{
int fbfd = 0;
struct fb_var_screeninfo vinfo;
struct ...