Tagged Questions

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
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
75 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 ...
1
vote
2answers
45 views

GL_DRAW/READ_FRAMEBUFFER vs GL_FRAMEBUFFER?

I've noticed that there now are the GL_DRAW/READ_FRAMEBUFFER extensions. Currently I am simply using GL_FRAMEBUFFER and glTextureBarrierNV. However, I have not found that much about the READ/WRITE ...
1
vote
3answers
137 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
196 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
3answers
223 views

Scaling a texture with a Framebuffer

My goal is to be able to scale textures when they are loaded, so I don't have to do it on every frame the sprite gets rendered. I figured the best method would be to render the scaled texture onto ...
1
vote
3answers
2k views

How to write directly to linux framebuffer?

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

Using sRGB colour in QGLFramebufferObject with multisampling

For performance reasons I have separated my 2D and 3D rendering. I have two QGLFramebufferObjects for each type because QGLFramebuffer does not support multisampling with GL_TEXTURE_2D as a target, ...
0
votes
0answers
62 views

Lock framebuffer temporary

I asked similar question before in ioctl to block operation. To be more general, I want to know how to block overwriting the framebuffer. My framebuffer consists of 3 layers and I want to access the ...
0
votes
0answers
62 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
0answers
36 views

compressing an RGB framebuffer with libxvidcore library

I want to compress a framebuffer (or any RGB raw image data) instance and compress it using xvid codec (actually any other compression library is also welcome especially libx264). I successfully get ...
0
votes
1answer
117 views

opengl - framebuffer texture clipped smaller than I set it?

I'm using opengl ES 2.0 I'm using a framebuffer linked to a texture to compile an offscreen render (of some simplistic metaballs), and then I'm rendering that texture to the main back buffer. ...
0
votes
1answer
149 views

OpenGL Framebuffer, drawing to texture

We have a hard time figuring out rendering to texture using framebuffer objects. We have managed to draw our texture unto another texture, but the texture isn't centered. If we set the the texture ...
0
votes
2answers
143 views

Read Framebuffer-texture like an 1D array

I am doing some gpgpu calculations with GL and want to read my results from the framebuffer. My framebuffer-texture is logically an 1D array, but I made it 2D to have a bigger area. Now I want to read ...
0
votes
3answers
228 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
191 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 ...