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
GLDELETEFRAMEBUFFERS(3G)					    OpenGL 3.3						  GLDELETEFRAMEBUFFERS(3G)

NAME
glDeleteFramebuffers - delete framebuffer objects C SPECIFICATION
void glDeleteFramebuffers(GLsizei n, GLuint *framebuffers); PARAMETERS
n Specifies the number of framebuffer objects to be deleted. framebuffers A pointer to an array containing n framebuffer objects to be deleted. DESCRIPTION
glDeleteFramebuffers deletes the n framebuffer objects whose names are stored in the array addressed by framebuffers. The name zero is reserved by the GL and is silently ignored, should it occur in framebuffers, as are other unused names. Once a framebuffer object is deleted, its name is again unused and it has no attachments. If a framebuffer that is currently bound to one or more of the targets GL_DRAW_FRAMEBUFFER or GL_READ_FRAMEBUFFER is deleted, it is as though glBindFramebuffer() had been executed with the corresponding target and framebuffer zero. ERRORS
GL_INVALID_VALUE is generated if n is negative. SEE ALSO
glGenFramebuffers(), glBindFramebuffer(), glCheckFramebufferStatus() 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/. OpenGL 3.3 03/08/2011 GLDELETEFRAMEBUFFERS(3G)