Tagged Questions

0
votes
3answers
172 views

How to write directly to linux framebuffer?

How to write directly to linux framebuffer?
0
votes
0answers
32 views

Taking a Screen Shot of an Embedded Linux Framebuffer

I'm running Embedded Linux on an evaluation kit (Zoom OMAP35x Torpedo Development Kit). The board has an LCD and I would like to be able to take screen shots convert them into a gif or png. I can get …
0
votes
1answer
103 views

Fragment shader rendering to off-screen frame buffer

Hi! In a Qt based application I want to execute a fragment shader on two textures (both 1000x1000 pixels). I draw a rectangle and the fragment shader works fine. But, now I want to renderer the …
1
vote
2answers
175 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 …
0
votes
1answer
290 views

Framebuffers, textures and glColor behavior in OpenGL/OpenGL ES.

I apologize in advance if this question seems confused. The behaviour I am seeing makes no sense to me. I have a Framebuffer rendering to a texture. I render solid rectangles of red, green, blue of …
3
votes
5answers
869 views

OpenGL: How to implement an “eraser” tool?

I'm working on a game for the iPhone that has a drawing/paint mechanic involved and I'm having problems trying to create a tool that would erase things already painted. The main problem is that the …
0
votes
3answers
687 views

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

Hi folks, 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 …
3
votes
3answers
1k views

How to push pixels faster on the iPhone?

I asked before about pixel-pushing, and have now managed to get far enough to get noise to show up on the screen. Here's how I init: CGDataProviderRef provider; bitmap = malloc(320*480*4); provider = …
3
votes
4answers
1k views

Dirty Rectangles

Where may one find references on implementing an algorithm for calculating a "dirty rectangle" for minimizing frame buffer updates? A display model that permits arbitrary edits and computes the …
2
votes
2answers
436 views

Pushing pixels on the iPhone

What's the fastest way to get a framebuffer and render to in software on the iPhone? Basically getting into a mode 13h style thing going so I can make some effects? :)