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

0
votes
0answers
3 views

WebGL: Display Depth Texture

I'm new to WebGL and trying to implement depth textures for later usage in Shadow Maps. Below is my code of the initilisation of the framebuffer. In the function drawTest I first bind all Buffers ...
0
votes
0answers
23 views

Android framebuffer to bitmap takes around 1 second, can it be optimised?

I am getting framebuffer from dev/graphics/fb0 as FileInputStream converting it to ddms RawImage format. All this takes around 100ms but when it comes to converting/writing it in to Bitmap it takes ...
0
votes
1answer
55 views

Drawing a texture to a framebuffer distorts the texture

I'm using the LWJGL OpenGL bindings for java and I want to draw textures to a framebuffer so I can render textures that are always used together at the same time. I followed the tutorial on the LWJGL ...
0
votes
0answers
39 views

Multiple framebuffers and textures not working on intel drivers

I'm writing an application using PyOpengl and PySide. My main machine is installed with ubuntu and an nvidia card (proprietary drivers), the premise is just to tell that the application is working ...
0
votes
0answers
16 views

Does anyone know of a low level (no frameworks) example of a drag & drop, re-order-able list?

I am looking for code (any language) of a basic graphical list which can be reordered by drag and drop. So exactly this functionality http://jqueryui.com/sortable/ but written directly on the frame ...
1
vote
1answer
48 views

Can GLES 1.1. use GLES 2.0 textures / framebuffer

I am working on an application that is primary Open GLES 1.1. However there are some large operations that need to be done per-pixel. A full on convert is currently out of the question. So the plan ...
0
votes
1answer
19 views

Render buffer in Open GL ES on iPhone

When drawing with Open GL ES one creates a framebuffer, attaches it to the context, creates a renderbuffer, attaches it to the context and, finally, attaches the renderbuffer to the framebuffer. My ...
0
votes
2answers
31 views

glBindFramebufferOES - documentation?

I am trying to find the reference pages / documentation of the method glBindFramebufferOES(and related directives) and spent a good amount of time googling. I am a registered iPhone developer and ...
0
votes
1answer
57 views

Understanding buffers in OpenGLES iOS

What I understand: There is what is called a frame buffer. It is an array of pointers to buffer objects. The buffer objects can be for example render buffers, texture buffers or other. If I want to ...
0
votes
1answer
33 views

OpenGL ping ponging with two textures on the same framebuffer

I'm trying to render to two textures, rendering from the first to the second, and then from the second to the first etc. The problem is that when I'm rendering the first texture to the second, it ...
1
vote
0answers
41 views

Android Display User space - Kernel space interaction

Android Display User space - Kernel space interaction. My current understanding is that there is a kernel driver for framebuffer which allocates the memory by calling mdss_mdp_alloc_fb_mem() This ...
0
votes
0answers
26 views

SDL fbcon - disable fbioput_vscreeninfo output

I am currently using SDL 1.2.14 with fbcon driver. My problem is that when my application launches, it prints multiple lines of logging from fbioput_vscreeninfo onto the console. i.e. Cannot ...
0
votes
1answer
53 views

WebGL display framebuffer?

I used the WEBKIT_WEBGL_depth_texture Extension. And init the buffers below. But how am I able to draw this framebuffer?? I'm totaly stuck right now. -.- function InitDepthtextures (){ var size = ...
-1
votes
1answer
34 views

What is a framebuffer, seriously? I don't understand in the context its used [closed]

According to this Wikipedia article: Framebuffer A Framebuffer (or sometimes Framestore) is a video output device that drives a video display from a memory buffer containing a complete frame of ...
0
votes
1answer
46 views

glGenFramebuffers makes program fail to run

I have reinstalled devcpp 4.9.9.2 on windows xp virtualbox and installed glut and glew. My original program just used glut, and shows some spheres bouncing around a room. My problem is that once I ...
1
vote
2answers
104 views

glGenFramebuffers, glBindFramebuffer etc undeclared

I'm trying to set up a frame buffer object but I am getting errors. glGenFramebuffers is always undeclared, as are other similar things like glBindFramebuffer. I believe that the problem is import ...
0
votes
1answer
38 views

Depth texture as color attachment

I d'like to attach a depth texture as a color attachment to the framebuffer. (I'm on iOS and GL_OES_depth_texture is supported) So I setup a texture like this: glGenTextures(1, &TextureName); ...
0
votes
1answer
41 views

Rendering to framebuffer and screen

I am trying to render to an fbo and then use that texture as an input to my second render pass for post processing, but it seems that glClear and glClearColor affect the texture that has been rendered ...
0
votes
0answers
88 views

Android Capture Surface Flinger

Many devices does not store final display data in framebuffer. Hence screen capture method will not work on those devices. I want to know how can get the final composition data from Surface Flinger? ...
3
votes
0answers
68 views

Certain framebuffer sizes fail on iOS devices (GL_FRAMEBUFFER_UNSUPPORTED)

I ran into a problem yesterday when trying to create a framebuffer of size 256x8 - on iOS devices (tested on iPad 3, iPhone 4 & iPad Mini) certain sizes will fail with GL_FRAMEBUFFER_UNSUPPORTED. ...
9
votes
1answer
240 views

Injecting a Frame Buffer

I've been "hacking" one of my favorite games from when I was younger, and I've managed to be able to intercept OpenGL calls and inject c++ code using an opengl32.dll wrapper. I've been able to come up ...
0
votes
0answers
143 views

android draw through /dev/graphics/fb0

I new in android system development, but I have some experience in android java api development. I have one goal - draw image on display through frame buffer. I write a simple program on C and it ...
0
votes
1answer
107 views

Using framebuffer device as a normal display (USB to HDMI adapter) on Linux

I have a USB3 to HDMI adapter based on UFX7000 SMSC chipset. It has a driver in the Linux kernel, but it makes a framebuffer device: usb 2-1.1.1: SMSC UDX USB device /dev/fb1 attached. 800x600 ...
0
votes
1answer
85 views

how to read opegl clorbuffer and depth buffer quickly?

I have to read color buffer and depth buffer every frame. I know the glReadPixels function is very slow, so I would like to know if there is a faster way to do the reading.
2
votes
0answers
236 views

How to discover framebuffer width on android?

i'm capturing framebuffer on my android device, but the decode is not working for the correctly resolution. I found i can get the bbp and screen resoution using: ioctl -rl 28 /dev/graphics/fb0 17920 ...
0
votes
2answers
146 views

Why programm still don't take screenshoot after getting “su”?

I push the button and programm get SU, but png file is 0 bytes weight. Logcat says Permission denied: can't read framebuffer pid=12844 uid=10087. So why thats so. My phone is rooted, program ...
0
votes
0answers
58 views

initialize the linux framebuffer right - C++

I am writing a framebuffer program, already mostly finished, the problem is when the kernel have disabled framebuffer console the program didn't work, if I run any program like kmscon the it works ...
1
vote
0answers
230 views

Can't render texture from off-screen frame buffer object into quad correctly

I'm working on a project in wich I need to get the surface from a SPH particle simulating water in order to render it on a cartoon style. In order to do this I'm following a method in wich the first ...
0
votes
1answer
239 views

THREE.js blur the frame buffer

I need to blur the frame buffer and I don't know how to get the frame buffer using THREE.js. I want to blur the whole frame buffer rather than blur each textures in the scene. So I guess I should ...
0
votes
0answers
307 views

How to get video content from framebuffer (/dev/graphics/fb0)?

I am accessing (framebuffer) fb0 file from native code and successfully able to get image content with fb0. But if I play a video or open the camera, it gives me black screen. At that time if I ...
1
vote
2answers
244 views

Drawing to HTML5 Canvas via a virtual frame buffer device

How would one go about drawing the output of a program running outside the browser onto a canvas? I was thinking along the lines of using a virtual frame buffer, but am unsure of how one would proceed ...
0
votes
0answers
174 views

Reading the protected framebuffer - Linux, Android

Platform : Arm CPU, Android Jellybean - Linux 3.4(customized for Android) Project : A debug tool collecting various dumps on a system crash. Work so far : Using Ion memory (available from ICS), i am ...
1
vote
1answer
334 views

getting jpg image from raw framebuffer data

I m able to get android framebuffer.But I do not know how to convert those raw bytes into jpg image file.If I try to draw image on my laptop with java bufferedImage.setpixel method.I m getting ...
0
votes
0answers
38 views

How to set a transparent background for mplayer?

I'm using mplayer-20100525 to play a movie on the framebuffer. When I do this, the background is black. So, mplayer overwrite the framebuffer area of the others graphical application. How to fix it? ...
0
votes
1answer
167 views

glGenFramebuffers() access violation when using GLFW + GLEW

I am getting this error: "Access violation executing location 0x00000000." when I use GLFW + GLEW on Windows. I am using Windows 7. I also have my own implementation (from scratch) that that ...
1
vote
1answer
213 views

How to read the FrameBuffer of an Android device to make system screenshot?

I would know how to take the system screenshot (not of activity, of the entire system) of an Android device. I tried to: using OpenGL library, but i can't find a complete code... using a process, like ...
0
votes
1answer
39 views

How to get the textures attached to a framebuffer?

At the moment I store framebuffers by their id and their number of render targets. But to draw into framebuffer I need to set the correct draw buffers using glDrawBuffers. For now I do it this way. ...
0
votes
2answers
163 views

how to render framebuffer directly in opengl es2.0?

I want to create a program that use all fbo made by myself to render. i know the common precedure of rendering like that: 1. egl init. 2. program use. 3. input texture data 4. ...
0
votes
1answer
96 views

invalid argument error when setting yres_virtual in fb_var_screeninfo

I'm trying to make an application for linux that writes directly to the framebuffer /dev/fb0. In order to make it double buffered I try to make the virtual screen be double the size of the screen. ...
0
votes
1answer
121 views

Read pixels in WebGLTexture (Rendering WebGL to texture)

I'm generating a texture on the GPU and rendering it to my own framebuffer object. It works fine and the texture is rendered to a WebGLTexture that I can pass to other shaders. However I want to ...
-1
votes
2answers
262 views

using linux framebuffer for graphics but disabling console text

I have some c code that draws simple graphics on the linux framebuffer console. I'm also using the raspberry pi and it's composite video output. The OS is raspbian, and i'm doing a low level solution ...
0
votes
1answer
67 views

How to use texture as depth attachment?

I have a framebuffer with multiple render targets. All of them are textures and not renderbuffers. How can I use the A component of a RGBA texture as depth attachment? I want to use the default depth ...
0
votes
1answer
69 views

OpenGL merge multiple framebuffer

I have a 2D scene splitted in multiple z levels. For every z level i got a framebuffer. How can i merge these framebuffer into a final framebuffer, which will get displayed (whole scene) The idea ...
1
vote
1answer
204 views

Ambiguous results with Frame Buffers in libgdx

I am getting the following weird results with the FrameBuffer class in libgdx. Here is the code that is producing this result: // This is the rendering code @Override public void render(float ...
0
votes
1answer
227 views

How do one calculate the fb_videomode parameters in linux kernel?

I would like to write a driver to http://www.trulydisplays.com/tft/specs/3.5in%20480x800%20TFT480800-25-E%20Spec.pdf How do I calculate all the following params: struct fb_videomode { const char ...
0
votes
2answers
69 views

using glTexture in a shader

I'm using openGL and what I want to do is render my scene to a texture and then store that texture so that I can pass it into my fragment shader to be used to render something else. I created a ...
0
votes
1answer
182 views

Turn off framebuffer console in Ubuntu Minimal

I'm trying to set up a VM based on Ubuntu Minimal to test out working with the framebuffer/DirectFB. I want the VM to only display what I put on the framebuffer, while I'm controlling the VM over SSH. ...
2
votes
1answer
86 views

executing a desktop app in linux by command line without showing its GUI window

I have an windowed App (f.i. an App with a graphic or GUI X-window) which takes a text file as input (stdin) and writes an output text file. During computation, it briefly opens a window which is ...
1
vote
1answer
115 views

How to get SDL to use fbcon not caca

I am trying to get started using SDL to create a portable and pretty front end that can run under X, or directly from the terminal (hopefully on a rasberry pi at some point) - at the moment I'm on a ...
0
votes
1answer
38 views

Is there a way to access the main graphics context of the HTML page? [duplicate]

Possible Duplicate: Using HTML5/Canvas/Javascript to take screenshots Is there a way to copy the main graphics context of the HTML page into a canvas? From Javascript, I'd like to grab a ...

1 2 3 4 5 7