Sponsored Content
Full Discussion: How to increase refresh rate
Operating Systems Linux How to increase refresh rate Post 74642 by armen on Saturday 11th of June 2005 01:18:18 AM
Old 06-11-2005
Quote:
Originally Posted by locustfurnace
Please read the rules.

(2) No negative comments about others or impolite remarks. Be patient.

Anyway, try changing the xorg.conf file to a single setting, such as;
VertRefresh 100.0

To set the vertical refresh rate to 100Mhz for example.
not quite sure what evidence u see that violates forum rules...
I have no doubt in my mind that there are experts or more knowledgable people here, and that's why I asked. One would only be offended if they indeed believed that there are no experts here and took this remark to be sarcastic, which was not the nature or the wording of my response.

lets not make something out of nothing.

being impatient is not a violation of forum rules, its if u act on those impulses in such a way that violates policy, and I HAVE NOT done that.

about setting VertRefresh value to 100.0, i had tried that earlier and X would not load.
That is one of the reasons why I decided to post this question Smilie

for those interested, it turned out it was the video card, so i simply replaced my win box monitor w/ my fc3 box and everything works just fine!
 

8 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

X-server and UNIX: monitor refresh rate

Hello. I'm running OpenBSD3.5 with GNOME2.4. The problem is that the monitors flickers. I'd like to know how to increase the vertical refresh rate. thanks in advance. (0 Replies)
Discussion started by: sablot
0 Replies

2. AIX

Refresh window?

Hi, for my first time using AIX, I haven't had much luck and I was wondering if I could get some urgent help. I had a terminal open and had allocated some space to a new volume group and then logical partition to "/foldername". I then went to go to netscape, so I typed that in the terminal and it... (0 Replies)
Discussion started by: JimmyFo
0 Replies

3. AIX

AIX 5.3 monitor refresh rate

Hi All, Great forums, a wealth of knowledge. We have just replaced our server room screen with a nice 15" LCD. We run CDE as the gui at the console. I think the refresh rate is too high for the LCD as I get an out of range error message on the screen. Can anyone point me in the right... (1 Reply)
Discussion started by: dj.brown
1 Replies

4. UNIX for Dummies Questions & Answers

Refresh ls list on screen (auto-refresh)?

I am looking for a way to issue a command or string of commands to repeatedly display new files that are written to the directory. I usually use ls -ltr to see the newest files at the bottom of the screen. I would like to automate this command to refresh what is displayed every second or so. Can... (3 Replies)
Discussion started by: skidude
3 Replies

5. Shell Programming and Scripting

refresh ps ax |grep using a script

hi all I want to refresh ps ax |grep something using a script every n seconds. Plz advise how to do that. (2 Replies)
Discussion started by: coolatt
2 Replies

6. Programming

ncurses refresh()

i have read in one of links, there its documented but i am using following code int main () { char ch; initscr(); printw("Enter a char :"); ch=getch(); printw("You Entered '%c' ",ch); getch(); endwin(); return 0; } the code does... (2 Replies)
Discussion started by: MrUser
2 Replies

7. Programming

Motif Application will not refresh

I have a Motif Application created with XtVaAppInitialize. I have two field widgets, created with XmCreateTextField. Now when I programmatically change the data in any of the two fields, the widgets don't get refreshed, only after a mouse over. I have tried anything, from including the "xrefresh"... (4 Replies)
Discussion started by: JenniferKuiper
4 Replies

8. IP Networking

C - IP change during a hardware refresh?

Hi All, I was told to perform analysis for IP change during a hardware refresh? Does the IP change when a hardware refresh is performed? if Yes, why? (5 Replies)
Discussion started by: visitsany
5 Replies
request_refresh_rate(3alleg4)					  Allegro manual				     request_refresh_rate(3alleg4)

NAME
request_refresh_rate - Requests a specific refresh rate during graphic mode switch. Allegro game programming library. SYNOPSIS
#include <allegro.h> void request_refresh_rate(int rate); DESCRIPTION
Requests that the next call to set_gfx_mode() try to use the specified refresh rate, if possible. Not all drivers are able to control this at all, and even when they can, not all rates will be possible on all hardware, so the actual settings may differ from what you requested. After you call set_gfx_mode(), you can use get_refresh_rate() to find out what was actually selected. At the moment only the DOS VESA 3.0, X DGA 2.0 and some Windows DirectX drivers support this function. The speed is specified in Hz, eg. 60, 70. To return to the normal default selection, pass a rate value of zero. Example: request_refresh_rate(60); if (set_gfx_mode(GFX_AUTODETECT, 640, 480, 0, 0) != 0) abort_on_error("Couldn't set graphic mode!"); if (get_refresh_rate() != 60) abort_on_error("Couldn't set refresh rate to 60Hz!"); SEE ALSO
set_gfx_mode(3alleg4), get_refresh_rate(3alleg4) Allegro version 4.4.2 request_refresh_rate(3alleg4)
All times are GMT -4. The time now is 01:05 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy