framebuffer question


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers framebuffer question
# 1  
Old 02-11-2008
framebuffer question

I am having a hard time getting the framebuffer configured for the correct resolution. The card is a XVR-1200 and it is (or should be) linked to (do not know if that is the correct term) jfb0a & b. When I run fbconfig on /dev/fbs/jfb0a and ask for a list of resolutions, they all come back with [1] after them, indicating that the card does not support the resolution. I have also tried jfb0 and jfb0b with the same results.

when I run fbconfig -prtconf I get back a printout containing the following:
/dev/fb/ ---
It lists the proper grafics card xvr-1200.

any help is greatly appreciated
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Question help

sorry wrong section. (0 Replies)
Discussion started by: Scripter12345
0 Replies

2. AIX

df question

Hi, Can anyone please explain a little about df command. I have following question: Following example is showing % used as 4 where as total free blocks are 15.46 out of 16.00 MB blocks. df -m /test Filesystem MBblocks Free %Used Iused %Iused ... (5 Replies)
Discussion started by: itsabhi9
5 Replies

3. UNIX Desktop Questions & Answers

Please Help me out with this question

. Make a new copy of mars.txt called marsx. What happens if you give the following commands when the files bio and marsx both already exist? Don't guess, try it! a) cp bio marsx b) mv bio marsx (2 Replies)
Discussion started by: rohit.katpalli
2 Replies

4. UNIX for Dummies Questions & Answers

framebuffer desktop

How to set up a framebuffer desktop (environment) / no X desktop (environment)? In my case: Debian etch, allready with framebuffer but I mean that I have in framebuffer all I use in X - also read pdf (without hanging up the whole system..) and so on. (3 Replies)
Discussion started by: Action
3 Replies

5. UNIX for Dummies Questions & Answers

got a question

on of the question that I have is that in class . We were asked this question **What command would you use to list the last modification time of all files in /tmp whose filenames end in exactly two digits? I know that we need to to ls /tmp/ ??.... but I did not know how to find that last... (2 Replies)
Discussion started by: xzyan
2 Replies

6. UNIX for Dummies Questions & Answers

one more question

I completely forgot this I am thinking of getting the book UNIX for dummies as a help to understand this class. Does anyone out there have this book? Is it helpful? (1 Reply)
Discussion started by: cinnamonbear
1 Replies

7. UNIX for Dummies Questions & Answers

A question?

using my unix os, can i do any autoexec.bat editing in order to execute selected programs that i use most often? :confused: (1 Reply)
Discussion started by: alecks1975
1 Replies

8. Linux

intel 845, framebuffer£¿

I can only use 771£¬ Anybody can use 787, 788, 789 modes£¬ 3ks£¡ (1 Reply)
Discussion started by: hw.uestc
1 Replies

9. Programming

Question !

Hi a am writing a C Programe on Vi Editor (File Handelling),and i am compiling it using fcc but it not compiling ,Even Vi not saving my file.Tell me how can i do that.One More Thing I want to know that ,Is their any subsitute of conio.h. (3 Replies)
Discussion started by: at_renai2001
3 Replies
Login or Register to Ask a Question
GLBINDFRAMEBUFFER(3G)						   OpenGL Manual					     GLBINDFRAMEBUFFER(3G)

NAME
glBindFramebuffer - bind a framebuffer to a framebuffer target C SPECIFICATION
void glBindFramebuffer(GLenum target, GLuint framebuffer); PARAMETERS
target Specifies the framebuffer target of the binding operation. framebuffer Specifies the name of the framebuffer object to bind. DESCRIPTION
glBindFramebuffer binds the framebuffer object with name framebuffer to the framebuffer target specified by target. target must be either GL_DRAW_FRAMEBUFFER, GL_READ_FRAMEBUFFER or GL_FRAMEBUFFER. If a framebuffer object is bound to GL_DRAW_FRAMEBUFFER or GL_READ_FRAMEBUFFER, it becomes the target for rendering or readback operations, respectively, until it is deleted or another framebuffer is bound to the corresponding bind point. Calling glBindFramebuffer with target set to GL_FRAMEBUFFER binds framebuffer to both the read and draw framebuffer targets. framebuffer is the name of a framebuffer object previously returned from a call to glGenFramebuffers(), or zero to break the existing binding of a framebuffer object to target. ERRORS
GL_INVALID_ENUM is generated if target is not GL_DRAW_FRAMEBUFFER, GL_READ_FRAMEBUFFER or GL_FRAMEBUFFER. GL_INVALID_OPERATION is generated if framebuffer is not zero or the name of a framebuffer previously returned from a call to glGenFramebuffers(). SEE ALSO
glGenFramebuffers(), glDeleteFramebuffers(), glFramebufferRenderbuffer(), glFramebufferTexture(), glFramebufferTexture1D(), glFramebufferTexture2D(), glFramebufferTexture3D(), glFramebufferTextureFace(), glFramebufferTextureLayer(), glIsFramebuffer() COPYRIGHT
Copyright (C) 2010 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. http://opencontent.org/openpub/. AUTHORS
opengl.org opengl.org 06/10/2014 GLBINDFRAMEBUFFER(3G)