Tagged Questions

12
votes
5answers
729 views

Framebuffer Documentation

Is there any documentation on how to write software that uses the framebuffer device in Linux? I've seen a couple simple examples that basically say: "open it, mmap it, write pixels to mapped area." ...
10
votes
6answers
683 views

Google Chrome over Linux FrameBuffer

I am working on a project where I need to run Google chromium over Linux FrameBuffer, I need to run it without any windowing system dependency ( It should draw on the buffer we provide it to draw, ...
5
votes
6answers
982 views

Using OpenGL Without X-Window System

Hell every body , i am newbie in linux programming ( Not Windows ) . i want to know how i can using OpenGL on Linux Platform Without X-Window System , can i send OpenGL Graphics Directly to ...
5
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 ...
5
votes
6answers
4k views

How to develop a DirectFB app without leaving X.11 environment

I'm trying to develop a GUI application for an embedded platform, without any windowing whatsoever and I'm doing that with DirectFB, and it suits my needs very fine. Since the embedded I develop for ...
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
2k 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
3answers
2k views

Direct access to linux framebuffer - copyarea

I want to move very quickly a rectangle over a framebuffer in an embedded linux application. I have found that the function cfb_copyarea may be useful. But I cannot find any ioctl over the /dev/fb ...
2
votes
2answers
98 views

Is there a way to use application that use hardware accelerated OpenGL on a headless machine?

There exist a class of applications that use opengl to provide hardware acceleration, but are not GUI based. However it seems that in the default case, to use opengl, there must be running an X-server ...
2
votes
1answer
609 views

full featured HTML rendering engine like WebKit/Gecko for embedded Linux?

I want to use HTML+CSS+JavaScript to develop a user interface for a touchscreen device in a Linux environment and need a suitable rendering engine. The device in question will have a ARM CPU with ...
2
votes
2answers
384 views

LinuxFB + DirectFB at same time?

I have an embedded plarform which has 2 graphic layers (/dev/fb0 and /dev/fb1). I want to use 2 separate processes: One using /dev/fb0 directly (raw mode, no video libs). The other using /dev/fb1 ...
1
vote
0answers
67 views

How to capture screen movies records on the Linux framebuffer

How can the linux frame buffer be captured to obtain screen movies? i have understanded how to get the framebuffer and convert to a image, but i dont know how to record them to a movies. can someone ...
1
vote
0answers
423 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
487 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 ...
1
vote
3answers
2k views

How to write directly to linux framebuffer?

How to write directly to linux framebuffer?
0
votes
1answer
794 views

How to assign /dev/fbX?

I would like to assign /dev/fbX device like below. /dev/fb0 for USB-LCD device. /dev/fb1 for Main Display device. I try that. ver.1:created /etc/udev/rules.d/91-udev-fb.rules KERNEL=="fb0", ...
0
votes
1answer
174 views

How can I capture frames from X11 into a file?

I think there should be some sort of internal support on screen capture utilities with X11. So how can I capture frames from X11 frame-buffer into a file, e.g. AVI, JPEG, etc.?
0
votes
0answers
114 views

framebuffer not available

I am trying to run an application that uses framebuffer on 2.6.31-14-generic #48-Ubuntu. All need to do is to install a framebuffer device to get rid of the following error. /dev/fb/0: No such file ...
0
votes
1answer
678 views

How to screen capture screenshots or movies on the Linux framebuffer

How can the linux frame buffer, on Cell Linux, be captured to obtain either screen shots or movies? Is there a tool to do this for a running program, or must the program writing to, and presumably ...