Tagged Questions

7
votes
6answers
4k 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 ...
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 ...
2
votes
1answer
108 views

How to use depth testing when rendering to an offscreen buffer then onto texture

I'm rendering my scene to a texture. This works fine except that depth testing does not work. How do I enable depth testing if rendering to an offscreen texture? I'm using the FrameBuffer class ...
1
vote
3answers
2k views

How to write directly to linux framebuffer?

How to write directly to linux framebuffer?
0
votes
3answers
114 views

Simple way to implement an efficient framebuffer in a modern language?

I'm looking for a simple way to implement a framebuffer in C#, D or Java. Something (an API or library) that would allow me to work with a 2d array of colors and update individual pixels or areas. ...
0
votes
0answers
65 views

ioctl to block operation

I am using ioctl function to access framebuffer The problem is that for each frame, I am writing framebuffer three times For instance, each frame, I first fill frame with Red color, do some ...
0
votes
1answer
48 views

Scaling the contents of OpenGL ES framebuffer

Currently I'm scaling down the contents of my OpenGL ES 1.1 framebuffer like this: save current framebuffer and renderbuffer references bind framebuffer2 and smallerRenderbuffer re-render all ...
0
votes
1answer
97 views

How can I get access to a video card frame buffer in a WPF app?

I'm trying to write a (very minimal) WPF app which will look at a video card frame buffer and do some image analysis on the data. I'm a complete noob when it comes to this kind of stuff, and I've ...