Tagged Questions

In general a framebuffer is a graphic hardware-independent abstraction layer used to display output to a monitor or display.

learn more… | top users | synonyms

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
3answers
320 views

How do I lower the amount of memory IOKit reserves at process start up?

I am a developer working on a very large, memory intensive 32bit application. Running out of virtual address space (memory) is a problem for us. During my investigation of some recent issues I ...
10
votes
6answers
682 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, ...
10
votes
1answer
2k views

Writing to then reading from an offscreen FBO on iPhone; works on simulator but not on device?

I'm trying to do some image manipulation on the iPhone, basing things on the GLImageProcessing example from Apple. Ultimately what I'd like to do is to load an image into a texture, perform one or ...
8
votes
1answer
624 views

Is it possible to share an opengl framebuffer object between contexts/threads?

I want to render my scene in one thread and then blit the result in window owned by another thread. To avoid reading the framebuffer back to cpu memory, I would like to use a framebuffer object. So ...
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
2answers
684 views

Android: How can you get framebuffer (screenshot) on rooted device?

I tried : process = Runtime.getRuntime().exec("su -c cat /dev/graphics/fb0 > /sdcard/frame.raw"); process.waitFor(); but it doesn't work. My device is rooted. I see many answers that it ...
5
votes
1answer
2k views

How to read the current frame buffer in android?

Is there a method to read the frame buffer of the current screen? I searched some data about the frame buffer. Some one used the glReadPixels method, but the information was not enough. Does anyone ...
5
votes
2answers
140 views

How could OpenGL buffers' state persist between program runs?

I'm writing an OpenGL program that draws into an Auxiliary Buffer, then the content of the Auxiliary Buffer is accumulated to the Accumulation Buffer before being GL_RETURN-ed to the Back buffer ...
5
votes
6answers
975 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
3answers
2k views

OpenGL: Trouble with Render to Texture & Framebuffer Object

I'd like to render a scene to an initially empty texture. To do so, I use a Framebuffer Object to which I attach an empty 2d texture and a depth buffer. After the set up, as for testing, I draw a ...
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 ...
4
votes
6answers
3k 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 ...
3
votes
2answers
79 views

Blend FBO onto default framebuffer

To clarify, when I say 'default framebuffer' I mean the one provided by the windowing system and what ends up on your monitor. To improve my rendering speeds for a CAD app, I've managed to separate ...
3
votes
1answer
123 views

Paint app, using framebuffer to render texture in OpenGL ES

I'm trying to make simple paint application, based on Apple's GLPaint. To draw a line, GLPaint draws an array of points with brush texture. With blending in OpenGL turned on, every point of that line ...
3
votes
1answer
115 views

framebuffer and using shaders in opengl

I'm quite a bit confused about framebuffers. What I want to do is using a framebuffer with multiple textures attached, fill every texture and than use a shader to combine (blend) all textures to ...
3
votes
3answers
175 views

Are there any ARM based systems/emulators with a graphical frame buffer that allow for (relatively) legacy-free Assembly programming?

I am looking for a modern system to do some bare bones Assembly programming (for fun/learning) that does not have the legacy burden of x86 platforms (where you still have to deal with BIOS, switching ...
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
1answer
1k views

Render to texture or offscreen framebuffer

I have a problem with rendering to texture and offscreen framebuffer with OpenGL ES on iPhone. First image shows mahjong tiles rendered to CAEAGLLayer directly and this is correct. Second one shows ...
3
votes
2answers
782 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 ...
3
votes
2answers
1k views

OpenGL ES 2.0 FBO creation goes wrong with unknown error

I've been struggling with this for a while now, and this code crashes with, to me, unknown reasons. I'm creating an FBO, binding a texture, and then the very first glDrawArrays() crashes with a ...
3
votes
1answer
1k views

Trying to render to texture using framebuffer always results in white texture

Using a couple of posts here in StackOverflow, I created what is supposed to be a simple render-to-texture using a framebuffer. The problem here is that it's not working. Something is broken in 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 ...
3
votes
4answers
3k 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 = ...
2
votes
2answers
43 views

Offscreen Framebuffers in OpenGL

I'm creating an iPhone game using OpenGL, and I want to draw onto an offscreen framebuffer, then using that framebuffer as a texture for drawing on the actual screen. I based my code off Apple's and ...
2
votes
1answer
104 views

How do I setup and use a persitent framebuffer object for doing unique color selection?

This question changed a lot since it was first asked because I didn't understand how little I knew about what I was asking. And one issue, regarding resizing, was clouding my ability to understand the ...
2
votes
2answers
117 views

Is there a way to render pixels directly on iPhone?

I want to port a game I've made which renders the screen itself 50 fps (doesn't use opengl). What is the best way to port this to the iPhone? I was reading about Framebuffer Objects. Is this a good ...
2
votes
1answer
221 views

How to make a copy of the OpenGL ES framebuffer in iOS?

I'd like to copy the OpenGL ES framebuffer from video RAM to video RAM in my iOS game. How is this done? Ideally I'll do this 30 times per second. Then transfer the contents of the copied buffer to ...
2
votes
1answer
182 views

CGImageRef from OpenGL ES framebuffer (iOS)

How can I efficiently create a CGImageRef from the EAGLView's framebuffer contents using glReadPixels? Perhaps I can "render directly to a texture"? I'm relatively new to OpenGL ES so any help is ...
2
votes
2answers
97 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
2answers
229 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
2answers
274 views

Maximum OpenGL Framebuffer Object size limit?

I am working on an OpenGL application on my Ubuntu laptop. My app shows lots of black and white unrecognizable patterns when I try to display a monochrome image (quite large). I have a hunch that it ...
2
votes
1answer
445 views

Python Webkit making web-site screenshots using virtual framebuffer

The problem is that I need capture web-site screenshots without running X server. So theoretically it's possible to create a virtual frame buffer and to use it to capture screenshot. Is there any ...
2
votes
1answer
107 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" ...
2
votes
2answers
877 views

Reading the pixels values from the Frame Buffer Object (FBO) using Pixel Buffer Object (PBO)

Can I use Pixel Buffer Object (PBO) to directly read the pixels values (i.e. using glReadPixels) from the FBO (i.e. while FBO is still attached)? If yes, What are the advantages and disadvantages ...
2
votes
1answer
136 views

Driver to simulate keypresses into another process

How can I simulate a key being pressed in a given process on Linux? Xorg isn't running, the inputs are handled by DirectFB
2
votes
1answer
480 views

iPhone opengl ES copy framebuffer into the renderbuffer

Hy folks, I'm working on an animation in opengl es. The animation should draw squares. This works already, but how can I copy the content from the Framebuffer into the renderbuffer, the problem is ...
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 ...
2
votes
1answer
608 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
450 views

glReadPixels() slow on reading GL_DEPTH_COMPONENT

My application is dependent on reading depth information back from the framebuffer. I've implemented this with glReadPixels(0, 0, width, height, GL_DEPTH_COMPONENT, GL_FLOAT, &depth_data) However ...
2
votes
2answers
383 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 ...
2
votes
1answer
809 views

How to change default framebuffer for Android?

i'm porting android to an overo gumstix. thus it seems the the omapfb driver has some problems on that platform. it doesn't matter at all, because i want to use udlfb (a driver for usb displays) ...
2
votes
2answers
2k views

glFramebufferTexture2D performance

I'm doing heavy computation using the GPU, which involves a lot of render-to-texture operations. It's an iterative computation, so there's a lot of rendering to a texture, then rendering that texture ...
2
votes
1answer
147 views

Is it possible to restore a previous GL framebuffer?

I'm working on an iPhone app that lets the user draw using GL. I used the GLPaint sample code project as a firm foundation, but now I want to add the ability for the user to load one of their previous ...
2
votes
1answer
682 views

Nexus One GL_FRAMEBUFFER_OES Extension… Not actually there?

I'm porting an iPhone app to Android, and I need to use OpenGL framebuffers. I have a Nexus One, and a call to glGet(GL_EXTENSIONS) shows that the Nexus One supports the same framebuffer extension as ...
2
votes
2answers
2k views

opengl - blending with previous contents of framebuffer

I am rendering to a texture through a framebuffer object, and when I draw transparent primitives, the primitives are blended properly with other primitives drawn in that single draw step, but they are ...
2
votes
2answers
998 views

Transparent FrameBuffer background in OpenGL

I want to use glClear and glClearColor to fill a frame buffer with a colour including alpha transparency. However the framebuffer always renders as opaque when binded to a texture which is rendered to ...
2
votes
1answer
278 views

Capturing camera framebuffer on iPhone 3G (not S)?

I've downloaded a free application from App Store (very nice application for instance) called ReadTheQRCode and it dont asks you to take the picture to decode the QRCode, my point is, is the ...

1 2 3 4