Slashdot Mirror


Does Your LCD Play Catch-Up To Your Mouse?

Dishes of Ryan writes "I fell in love with the idea of an LCD monitor, so I ended up buying a nice, shiny Dell 2001FP. However, nowhere, and I mean *nowhere* did I read about LCDs having an input lag on them. For instance, if I scoot the mouse across the screen, there is a noticeable delay between when I move the mouse and when the cursor moves. To prove it to people, made a video showing exactly what I mean. You can almost forget being king of the hill on twitch FPS games like Unreal Tournament. Are there any other Slashdotters out there that are as annoyed as I am? What did you do?"

145 of 691 comments (clear)

  1. Need a different monitor by AKAImBatman · · Score: 5, Insightful

    No offense, but you need to get another monitor. I notice no "lag" between my iBook and CRTs, nor do I notice any lag on my new 17" KDS for my desktop. Having developed a few video games and GUIs, I have a fairly well trained eye. I can see the problem in the video, but I see no such problem on my systems.

    Conclusion? Dell buys parts from the lowest bidder. Ergo, they are the lowest quality. Therefore, you need a better monitor.

    Sorry.

    1. Re:Need a different monitor by thedogcow · · Score: 2, Informative

      Exactly. You get what you pay for. I have a 23" Cinema Display and it is flawles in regarding operation and even asthetic look.

      --
      Yes! I listen to NYC Speedcore and do math at 3AM. I suggest you try it too.
    2. Re:Need a different monitor by Desert+Raven · · Score: 4, Informative

      I'll second this. I'm running a Sumsung 193v flat panel bought at Sam's club, on an old dual PIII-800 with an NVIDIA GeForce FX 5200 card.

      No lag here, at all. And this stuff ain't exactly cutting-edge.

      Did it occur to you that maybe you have a hardware problem with *your* system?

    3. Re:Need a different monitor by AKAImBatman · · Score: 5, Informative

      I just thought of something you might want to try. LCDs are a bit different than CRTs in that they are completely digital. Since the monitor is digital, it sometimes requires calibration when used with an analog connector. Check your manufacturers specs for the EXACT resolution AND refresh rate that they recommend. The monitor will run in other modes, but it supposedly won't do them as well.

      Once you've set your resolution and refresh rate, be sure to use the auto-adjust button if your monitor has it. When I first got mine, I thought the picture looked like crap. Then I found the auto-adjust. With a push of a button, I suddenly saw the crispest text I'd ever seen in my life. Quite an improvement over CRT displays. :-)

    4. Re:Need a different monitor by Spy+Hunter · · Score: 4, Insightful
      I have this monitor, and it causes no lag on my machine. Dragging windows is just as instant as it is on a CRT, and most games are quite responsive. I'll admit I haven't put it side-by-side with a CRT, but I am quite sensitive to mouse lag (I refuse to use a USB mouse on my machine because for some reason it causes noticable lag, perhaps due to dodgy USB hardware/drivers).

      P.S. This monitor is awesome and I would recommend it to anybody. Great for gaming, watching movies, anything.

      --
      main(c,r){for(r=32;r;) printf(++c>31?c=!r--,"\n":c<r?" ":~c&r?" `":" #");}
    5. Re:Need a different monitor by bsartist · · Score: 3, Funny

      What does your sig do?

      It encourages you to learn C. :-)

      --
      Lost: Sig, white with black letters. No collar. Reward if found!
    6. Re:Need a different monitor by Megane · · Score: 3, Interesting

      I'll bet the monitor in question is connected with a VGA plug. I've never seen that happen with a laptop display, and your Cinema display uses DVI. It's also a Dell, so what can you expect? "Dude, you're going to Hell!"

      --
      #naabhaprzrag, #sverubfr-000, #agi-fcbafberq, negvpyr[pynff*=' negvpyr-ary-'] { qvfcynl: abar !vzcbegnag; }
    7. Re:Need a different monitor by BillyBlaze · · Score: 2, Informative
      I think it would be really cool for a CS professor to put a question like that on a written test, for some huge amount of extra credit. Oh well...

      It displays Pascals triangle.

    8. Re:Need a different monitor by Waffle+Iron · · Score: 5, Informative
      One thing I noticed is that if you have a screen full of anti-aliased text, the auto adjust may not have enough edges to crunch on. I have a big bitmap of alternating black and white pixels that I put up to test the monitor's synch to the pixel clock.

      If I autoadjust while showing normal windows, the bitmap will usually still have fuzzy areas when I pull it up. If I autoadjust while the bitmap is being displayed, the monitor is able to lock onto it perfectly. The text looks noticeably better with a perfect lock, especially when using sub-pixel sampling on the fonts, which needs pixel-perfect alignment to work properly.

      I have a shortcut to this image on my systems because I have a KVM switch, so I need to autoadjust a lot. No two systems have the exact same video timings.

    9. Re:Need a different monitor by AKAImBatman · · Score: 2, Insightful

      Depends on how much you spend

      Definitely. The same was true of CRTs.

      whether you're doing text or games, right?

      Not that I'm aware of. As I understand it, gaming ability is a function of response time. i.e. A monitor with a lower response time will play games better. But LCDs inherently have a sharp image due to the way they function. Unlike a CRT which can "bleed" from pixel to pixel, an LCD consists of truly discreet pixels that are flipped on and off. As long as the monitor is properly adjusted to the video signal (check your manufacturers recommendations and look for an auto-adjust button), it should look just fine for both text and games.

      Take that with a grain of salt, though. I'm not up to speed on all of the manufacturers techniques for making their monitors seem "fast" or "crisp". Some may use algorithms or circuitry that favor one use over another, or result in issues like bleed.

    10. Re:Need a different monitor by Zorilla · · Score: 3, Informative

      It's also a Dell, so what can you expect? "Dude, you're going to Hell!"

      That Dell monitor is probably a rebadged Samsung or LG.

      --

      It would be cool if it didn't suck.
    11. Re:Need a different monitor by AKAImBatman · · Score: 2, Informative

      LCD TVs and Response Time Response time is basically the amount of time it takes for a liquid crystal cell to go from active (black) to inactive (white) and back to active (black) again.

      From the article on the Dell LCD:

      Response Time: 16ms (Typical)

      I think the problem is something else. Perhaps a bad batch of controller cards? *shrug*

    12. Re:Need a different monitor by ashridah · · Score: 2, Informative

      with a bit of mild C knowledge about the equivalence between
      condition ? expression1 : expression2;
      and
      if (condition)
      expression1;
      else
      expression2:
      you can decipher it to a reasonable degree:
      #include <stdio.h>
      main(void)
      {
      int c=0;
      int r=0;
      for(r=32;r;)
      {
      if(++c>31)
      { // this next line seems weird.
      // looks like a fancy way of saying c=0,
      // unless r is 0.
      c=!r--;
      printf("\n");
      }
      else
      {
      if(c<r)
      printf(" ");
      else
      if(~c&r)
      printf(" `");
      else
      printf(" #");
      }
      }
      }

      Looks weird, but it does work, prints out a giant text triangle. it's a little small to be a root kit :)

      ashridah

    13. Re:Need a different monitor by thogard · · Score: 2, Informative

      Most LCDs only use the analog pins anyway so it won't matter what pin you plug it into however...
      if you have two, could it be that for some odd reason the video card has decided to needs a second interrupt and that one is being shared with the mouse? That would cause a nasty delay that might be noticed.

    14. Re:Need a different monitor by ZenShadow · · Score: 4, Insightful

      Funny, I feel the same way about CRT's as you do about LCD's. One of the following is probably true:

      (a) You've been running the panels in non-native resolutions. Yes, a 1600x1200 LCD does like like absolute shit at 1280x1024.

      (b) You've been using a poorly adjusted VGA-connected LCD panel. I have had analogue panels where I couldn't get rid of the ghosting (though my 15" Multisync 1530v looks fine). DVI makes all the difference in the world. The 21.3" Samsung that's sitting next to the multisync looks better than any monitor ever could.

      Fuzzy? Not on your life. Oh, and turn that ClearText crap off. It'll help. A lot.

      --ZS

      --
      -- sigs cause cancer.
    15. Re:Need a different monitor by Stephen+Samuel · · Score: 2, Informative

      It's not just a triangle It's a reasonable representation of a fractal pattern.

      --
      Free Software: Like love, it grows best when given away.
    16. Re:Need a different monitor by Doppler00 · · Score: 4, Informative

      sub-pixel sampling on fonts does not work very good at all unless you use a DVI connector for your LCD. I changed from a VGA to a DVI connector on my LCD panel at work and the difference is astounding. I'm still amazed that 90% of consumers are completely oblivious to this difference. Not to single you out specifically, but I'm tired of the average consumer being ignorant of the differences between video connection standards.

      BTW, companies now make excellent DVI/USB KVM switches, so there is no execuse to use a VGA connection on a LCD panel anymore.

    17. Re:Need a different monitor by fbform · · Score: 4, Informative

      It displays Pascals triangle.

      No it doesn't. It's not Pascal's triangle. It's Sierpinski's triangle. Pascal's triangle is such that the ith row gives the binomial coefficients for the expansion of (a+b)^i. Sierpinski's triangle is a made by drawing a triangle and recursively joining the midpoints of its sides. Pascal's triangle is chiefly an algebraic entity. Sierpinski's triangle is chiefly a geometric/fractal entity.

      --
      Time flies like an arrow. Fruit flies like a banana.
    18. Re:Need a different monitor by nule.org · · Score: 2, Funny

      The poster doesn't need a different monitor - he or she just needs a shorter monitor cable. It's taking way too long for the electrons to reach the screen.

    19. Re:Need a different monitor by Minna+Kirai · · Score: 3, Insightful

      I should know.

      Why should you know??

      You said earlier you're a video-game maker. Try takling to a professional photographer or other serious imagery user, and you can get a lengthy diatribe about how important proper monitor calibration is to visual fidelity, and how impossible it is to correctly tweak the color distribution of an LCD.

      But it's nice to know you have the confidence to pretend you know what you're talking about.

      That's what I call a "Twirlip". He's a heavy slashdot-poster who usually ends posts with insults that apply better to himself than anyone else in the thread.

    20. Re:Need a different monitor by Minna+Kirai · · Score: 5, Funny

      I'll take a poor CRT over a good LCD anyday.

      I'd take the good LCD, sell it, and buy 2 good CRTs, and a motorcycle.

    21. Re:Need a different monitor by Anonymous Coward · · Score: 4, Interesting

      Waffle Iron,

      THANK YOU! Excellent post my friend. I just created a small bmp in paint with different sized black squares on a white background, then tiled it for my background -> Autoadjusted my LCD.

      It looks fucking fantastic, text is smooth and clear, unbelievable. Thanks a million man, most useful post I've read on slashdot. Note, and this isn't even at my LCD's native resolution (1280x1024, whereas I am running 1280x960). Amazing, didn't think this was possible.

    22. Re:Need a different monitor by NotZed · · Score: 2, Insightful
      The physical mechanism emitting photons takes time to react when you change the input signal. If the diode doesn't stop transmitting instantly -- and they don't -- then frame #2 has a lot of the pattern of light from frame #1 mixed into it. This is the effect that people sometimes describe as "ghosting" or "mouse trails".

      Umm, lcd's don't use diodes. And if they did the response time would be in nanoseconds. The photons stop instantly once power is turned off and the current stops flowing.

      LCD's bend the polarisation plane of the light passing through them based on current, and it takes time for the polarising effect to dissipate as the current turns off (capacitive effects perhaps?).

      --
      _ // `Thinking is an exercise to which all too few brains
      \\/ are accustomed' - First Lensman
    23. Re:Need a different monitor by Venotar · · Score: 5, Informative

      Megane said:
      > I'll bet the monitor in question is connected
      > with a VGA plug

      And Zorilla responded:
      > That Dell monitor is probably a rebadged Samsung
      > or LG.

      Megane,

      I have one of the Dell 2001FPs connected via a VGA cable (it's on a machine that doesn't get used for much gaming so it's connected to a slightly older video card) and I haven't notice a lag when moving the mouse (although I'm in front of my Hercules right now, so I can't actually test to see if the Dell shows the symptoms displayed in his video).

      Zorilla,

      You're partially correct. The Dell 2001FP contains a LG.Philips LM201U04 panel. The rest of the monitor is Dell designed; although not Dell built.

    24. Re:Need a different monitor by n6mod · · Score: 2, Informative

      It's 5:4, the "ideal" ratio. Kind of nice, actually. (but then I'm a photographer, and 4:3 is unnatural to me: 5:4 is normal, though there's that fiddling small format stuff that's all 3:2)

      Lots of displays are 1280x1024...it's SXGA. I have a Dell LCD in that size at the office, and the pixels are square.

      --
      You have violated Robot's Rules of Order and will be asked to leave the future immediately.
    25. Re:Need a different monitor by Wonko · · Score: 3, Interesting

      sub-pixel sampling on fonts does not work very good at all unless you use a DVI connector for your LCD.

      Funny, the sub-pixel antialiasing looks virtually identical on my laptop, my pair of aging 15 inch LCD panels, and every other LCD I've tried. All except for the laptop(s) are analog.

      I changed from a VGA to a DVI connector on my LCD panel at work and the difference is astounding.

      If you are seeing that much of a difference you might want to learn how to adjust you LCD. So far, every single time I have seen an LCD look bad it has either been poorly auto-adjusted or is running at the wrong resolution.

      It helps some if when you hit the auto-adjust button you have an image with nice sharp edges up on the screen. If it is still not quite clear, you may have to make some (probably minor) adjustments to the phase/clock yourself. If you still have issues you might want to change your refresh rate. My old panels "flicker" quite a bit at 60hz, but look fine at 72hz.

      BTW, companies now make excellent DVI/USB KVM switches, so there is no execuse to use a VGA connection on a LCD panel anymore.

      Cost is probably a good excuse, especially for the 90% of consumers of which you are speaking. It would be better to educate them on proper configuration of their equipment.

    26. Re:Need a different monitor by Kizzle · · Score: 5, Interesting

      THANK YOU. Awesome trick. I put up the images as you described them. These worked for me. I did notice my LCD acting really weird when these images were being displayed. I don't recommend keeping the image on the monitor for any longer than needed. http://www.hackermedia.net/downloads/lcd-cal

    27. Re:Need a different monitor by Spy+Hunter · · Score: 2, Informative

      No. You are confused. USB mice have faster *sampling rates* by default than PS/2 mice. However, since PS/2 mice already sample at 60 Hz, any benefit from the increased sampling rate is marginal (what use is sampling the mouse more frequently than your monitor displays frames?). The *response time* is different. It's the difference between bandwidth and latency. USB mice have higher bandwidth but higher latency as well because more processing is involved in sampling the mouse. I imagine the difference is negligable in most cases, however in my case either the USB hardware or driver is low quality, causing a noticable delay in mouse movement.

      --
      main(c,r){for(r=32;r;) printf(++c>31?c=!r--,"\n":c<r?" ":~c&r?" `":" #");}
    28. Re:Need a different monitor by Spy+Hunter · · Score: 2, Informative

      The mouse isn't where the difference is; the difference is what happens to the signal inside the computer. For PS/2, the signal gets processed in a tiny bit of hardware, then goes straight to the CPU via its own high-priority interrupt, and gets handed to the mouse driver. For USB, the signal must be wrapped in the USB protocol, must wait for the shared USB line to be clear to send, gets processed in a larger bit of hardware, then goes to the CPU in an interrupt shared with every other USB device on the system and possibly other things besides, then goes through the USB driver's protocol stack, and only then gets sent to the mouse driver. There are a lot more opportunities to introduce latency in a USB signal.

      --
      main(c,r){for(r=32;r;) printf(++c>31?c=!r--,"\n":c<r?" ":~c&r?" `":" #");}
    29. Re:Need a different monitor by Rolo+Tomasi · · Score: 3, Informative

      Umm. The pixels on a LCD are always perfectly square. What you mean is that if you used the 1280x1024 mode on a standard 4:3 CRT, the image would be slightly distorted.

      And the mode caught on because it's the largest mode using standard pixel numbers that fits into a 4MB framebuffer at a depth of 24 bits. It's been a standard for a lot of Unix workstations (which used fixed frequency 5:4 CRT monitors for this).

      --
      Did you know you can fertilize your lawn with used motor oil?
    30. Re:Need a different monitor by sparklehackery · · Score: 3, Funny

      > I feel lucky that a monitor at 60hz normally looks fine to me

      And all those opticians and spectacle manufacturers worldwide feel lucky too.

    31. Re:Need a different monitor by JeFurry · · Score: 3, Informative

      If you got the sort of random flickering I got, then don't worry. This is because the monitor isn't precisely sync'ed to the pixel clock of the display card. Doesn't happen on DVI systems where it's an all-digital connection. What you're seeing is effectively a close-up of a moiré pattern between the two slightly-different scan rates. Although it's ugly as sin, it'll do no harm to your monitor. If you auto-recalibrate the monitor with the black-and-white pixel image tiled to fill the screen, you should see this problem reduced to almost nothing, as the monitor resyncs. If your monitor doesn't auto-calibrate, and you have to tweak by hand, remember that the goal state is one in which all the black and white pixels are visible at once, with no bands of all-black or all-white. For the best results, you *must* do this in the monitor's native resolution - anything higher won't work as it's downscaled, and anything lower will produce an inferior result due to scaling (assuming your monitor is set to scale the image - should be OK if not!). Incidentally, if there are any Windows users out there with nVidia graphics cards, you might be interested to know that their current drivers include a calibration screen for LCD panels which is ideal for this, and includes other items such as large colour blocks for the monitor to calibrate to. It leads to quite an improvement!

      --
      -- What goes up must come down. Ask any SysAdmin.
    32. Re:Need a different monitor by gfxguy · · Score: 2, Informative

      I use two different Philips LCD monitors - both using the analog inputs, and I have no such problems. In fact, I play (and do moderately well for a middle aged guy with two kids and little time to practice) CounterStrike online with no problems.

      This guy's definately just got a defective monitor or one made with ancient/sub-par parts.

      --
      Stupid sexy Flanders.
    33. Re:Need a different monitor by 0x537461746943 · · Score: 3, Interesting

      I have used 2 LCD monitors with VGA inputs for the past 3 years and I have never seen lag like that. Something is wrong with his OS/Drivers or maybe some trojan has infected his system(maybe a hidden vnc server is lagging his system :).

    34. Re:Need a different monitor by flibuste · · Score: 3, Interesting
      When the resolution is set to 60Hz which is the lowest, the screen flickers. That is a fact. You can see it very well while displaying a document with a white background and some black text.

      Most people are just not aware of it and take it for granted. I cannot count how many time I showed my fellow co-workers how confy they get by pushing the refresh right higher (75Hz is great).

      Regarding eyes and such. You will more easily get headaches or eye-aches if you keep a low refresh rate. That will also cause your eyes to get tired faster, and they will have to make more efforts to adjust. Your eye muscles will take much of that effort and probably get tired after a while. After a long while, they won't be able to adjust as they used to.

      That is part of the reason why I browse at -4.75 with contact lenses since I am 12...

    35. Re:Need a different monitor by poot_rootbeer · · Score: 2, Insightful

      I'm tired of the average consumer being ignorant of the differences between video connection standards.

      Maybe it would help if the manufacturers weren't retarded with their naming conventions.

      There's DVI-A, DVI-D, DVI-I, all of which look the same unless you examine the pin configuration closely, and are mostly not interchangeable. And DVI-A is not even digital at all! That's right, it stands for "Digital Video Interconnect, Analog".

      So even if I connect my display to my graphics card with a DVI cable, it's still possible that the connection will be VGA-style analog, unless I do a significant amount of research about the capabilities of the card, the display, and even the cable itself.

      That's too much work for the "average consumer" to be bothered with. I can't say I'd blame them for being ignorant.

  2. In a word by Mantorp · · Score: 2, Funny

    No

    1. Re:In a word by lphuberdeau · · Score: 2, Interesting

      I'm not annoyed with my LCD because I informed myself before actually buying one. I got myself a Samsung 712N, which has a response time of 12ms. I havn't noticed any ghosting or lag.

      --
      Qui ne va pas à la chasse n'a pas de gibier
      PHP Queb
  3. display or drivers? by v1 · · Score: 3, Informative

    I wonder if it's the display that's lagging, or the video drivers? The last time I recall seeing an LCD display "lag" was back before the days of TFT screens, where your mouse would "submarine". (disappear while it was on the move)

    --
    I work for the Department of Redundancy Department.
    1. Re:display or drivers? by base_chakra · · Score: 2, Insightful

      I wonder if it's the display that's lagging, or the video drivers? The last time I recall seeing an LCD display "lag" was back before the days of TFT screens

      This seems to be a much more sensible explanation for the apparent lag. Even early TFT displays suffer from comparitively slow screen update intervals.

      How the heck did this question make it past the editorial filter anyway? The idea that LCD displays are susceptible to some kind of input device lag specifically (as opposed to any other kind of state change that affects redraw) is preposterous.

  4. Reader Reviews by the+eric+conspiracy · · Score: 2, Insightful

    When I bought my LCD monitor I found all kinds of information in user reviews online. Check out New Egg, Amazon, etc. for all kings of discussion of this exact issue.

    1. Re:Reader Reviews by Jacer · · Score: 5, Interesting

      Never, under any circumstances base buying decisions off of reviews from Newegg. Half the reviewers state they're first time system builders with no real idea of what there doing. The other half try to sound like they know what they're talking about, but obviously have no clue, or are just flat out lieing. Then you have the problem that newegg removes the reviews that are less than pleasant. Your best bet is to read a site that focuses on reviews and sells no hardware. Maybe Slashdot could start a hardware review section and do some unbiased hard journalism!

      --
      --fetch daddy's blue fright wig, i must be handsome when i release my rage
    2. Re:Reader Reviews by gl4ss · · Score: 2, Funny

      *Maybe Slashdot could start a hardware review section and do some unbiased hard journalism!*

      how would it help with the problem of getting misinformation from clueless people who heard couple of cyberlegends, didn't read to the end of the blurb and never opened a computer in their life?

      speaking of which, 80% of the comments under this article alone are totally clueless as to the what the actual problem was that the guy was having and as a consequence tell him to check the batteries on the mouse and shit like that because they refuse(not even think of ) the possibility that theres some delay caused possibly by the tft screens internal electronics(in chips that it uses to make the rgb analog signal viewable for example) or some such.

      --
      world was created 5 seconds before this post as it is.
    3. Re:Reader Reviews by Keeper · · Score: 2, Interesting

      Yeah. Most of us refuse to consider the possibility because it's utterly stupid.

      I can imagine that similar things were said when it was suggested that the Earth wasn't at the center of the universe and that everything didn't revolve around it.

      Disprove his evidence instead of mocking it as "stupid" and inconceivable.

      I've never seen lag like that caused by an LCD and I can't imagine how the electronics could create that effect.

      The demonstration video showed the LCD off by 1 or 2 frames. Nobody would notice that kind of delay unless the LCD were placed next to a CRT in a multi-mon configuration. And hey, guess what this guy did? ...

      At 30fps, that delay would be 33 to 66ms. The LCD switching speeds in monitors these days seem to range between 16 to 20ms. So, question is, can you realistically introduce another 13 to 50ms? Don't forget to include the A2D converters and circuitry designed to compensate for mismatching the refresh rate from the preferred rate...

      Like another post already said, the LCD would need a screen data buffer of several megabytes and it doesn't have one.

      You don't need a large data buffer to see that kind of effect, you just need a long enough data pipeline.

  5. No such experience here by Thai-Pan · · Score: 3, Insightful

    I've built countless systems with various high and low end LCD screens with no such lag. The worst screen I've encountered had the typical old-generation ghosting, but I've never seen input lag.

  6. It could be a driver problem by Stevyn · · Score: 4, Interesting

    I'd recommend popping in Knoppix and see how it works. It will probably pick an open driver made for your graphics card family. You say this happens with the mouse, what about typing?

  7. No sir... by Rew190 · · Score: 3, Insightful

    I've had zero problems on both of my laptops and every LCD I've ever used. Something's screwy with your hardware. It's rather sad that Slashdot posted this as a front pager...

  8. If I can't play, nobody can! by Nuclear+Elephant · · Score: 4, Funny

    What did you do?

    I posted a 800K movie of it on Slashdot so I could suck up all the Internet's available bandwidth and make everyone else's game run at the same fps as mine. =)

  9. What did you do? by Threni · · Score: 2, Funny

    Use a CRT at home, for games, DVD etc, and an LCD at work, where I edit text/graphics etc, and don't have to pay for my own hardware.

    If I wanted to see a bunch of trails behind stuff whenever it moved, I'd take acid.

  10. You could get a physic mouse... by mongoose(!no) · · Score: 2, Funny

    ...that would predict how you move the mouse before hand to make up for the lag.

  11. Lag on a good monitor? That doesn't make sense. by flamechocobo · · Score: 3, Informative

    That monitor is actually a BenQ monitor with Dell's name on it. It's a great monitor, and has a 16ms response time, so it shouldn't lag at all in normal use. You should try video drivers or maybe even the mouse itself. There simply is no reason a good monitor such as that one (congratulations on your purchase. That's the best cost to performance monitor out right now.) should show lag in a normal situation. I have used a 25ms LCD, and it doesn't lag in normal use. Call Dell after if driver's don't work.

  12. Not an LCD problem by mpoulton · · Score: 2, Insightful

    That sounds much more like an issue with your computer than with your monitor. Does it do this with a CRT running the same resolution and refresh rate? I would bet so. LCDs have slower image response time (pixel rise/fall) than CRTs, but there is no significant delay between the time a signal reaches the monitor and the time it is displayed. In fact, implementing such a delay would be quite a challenge -- the information would have to be stored somewhere between the time it is sent to the monitor and the time it is displayed. This would require significant memory in the monitor to buffer several frames of video. Monitors don't do this.

    --
    I am a geek attorney, but not your geek attorney unless you've already retained me. This is not legal advice.
  13. Not the Flat Panel.... by Silvers · · Score: 4, Informative

    It's the buffering in the driver.

    Flat Panels *will* ghost and blur, however they do not lag.

    What causes this is buffering of execution commands in the drivers, which makes some games at certain resolutions lag really really bad on input.

    Change drivers, and it will usually go away.

    1. Re:Not the Flat Panel.... by mfrnka · · Score: 2, Informative

      How about *might* ghost and blur. I've got a 2001FP and have no ghost, blur, or lag problems. NONE. Many MANY gamers go with 2001FP for just these reasons.

  14. could be the mouse by sydres · · Score: 2, Informative

    driver then again he may have some app that is sucking his ram

  15. Um, no. by autopr0n · · Score: 5, Informative

    I've used lots of LCDs, including plenty of DELL LCDs. The LCDs we've used at work were faded, and the colors looked awful after a copule of years. but I've never never seen any kind of lag like this in any kind of monitor.

    My guess is that there is something wrong with the video drivers, or the mouse drivers, or some other part of his computer that's causing these problems.

    I can't see the vid because the file is apperantly slashdotted.

    --
    autopr0n is like, down and stuff.
    1. Re:Um, no. by kzinti · · Score: 4, Insightful

      My guess is that there is something wrong with the video drivers, or the mouse drivers, or some other part of his computer that's causing these problems.

      If I remember the specs I saw when I was shopping for an LCD monitor about 18 months ago, LCD update rates are characterized in tens of milliseconds. The ones I was considering were in the 20 to 28 ms range. That's between one and two screen refreshes at 60 Hz. That's fast enough not to be noticeable.

      If the monitor were causing the mouse to have a noticable lag, then everything else would appear to lag too. The guy needs to do some other tests - if he brings up a window and types, do the characters appear to be delayed too?

      I'm with you - I think it's his mouse driver or some sort of strange interaction between the mouse driver and something he installed with the new drivers.

    2. Re:Um, no. by suckmysav · · Score: 5, Funny

      "The guy needs to do some other tests - if he brings up a window and types, do the characters appear to be delayed too?"



      Reminds me of a guy who bought his dot-matrix printer in for repair twice because it would not print the letter K. No amount of testing was enough to convince him that this was simply not possible. It turned out his keyboard had a faulty K key, and the K was not appearing on his screen either.

      --
      "You can't fight in here, this is the war room!"
    3. Re:Um, no. by mkldev · · Score: 2, Informative
      If an LCD panel turns pink, that's not the front of the LCD panel becoming discolored. That's your backlight failing. Like any bulb, they eventually fail. Unlike most bulbs, though, they're kind enough to do so fairly slowly....

      --
      120 character sigs suck. Make it 250.
    4. Re:Um, no. by hatchet · · Score: 2, Insightful

      People, you are being misled! Those 20-28ms is only the delay! After that time it takes another 50ms (less on newer models with active matrix) for pixel to actually change colour. All people who are saying LCDs perform as well as CRT aren't comparing them side-by-side. Most of you got shiny new LCD with shiny new computer... and it feels better because you have better computer, not becuse of LCD. Especially in gaming CRTs are much faster than LCDs. If you don't notice that you are blind. Or you are comparing it to CRT at 60Hz which is overkill for eyes and brain. Modern CRTs have no problem operating at 120Hz - use that! As for "i don't see skipping mouse pointer on my lcd".. you probably use default windows drivers for mouse, which caps your mouse refresh to 40Hz.. of course you don't notice anything. Download "ps2rate" utility to measure your mouse rate. Even usb mice with default drivers default to 40Hz.

  16. Re:Something just occurred to me. by gl4ss · · Score: 4, Informative

    rtfa?

    the lag is not coming from that.
    hell, just read the damn blurb.

    here's for the stubborn people:
    two monitors, fed from the same computer. other one is some flatty dell and the other one is a crt. now, the movie is about doing something with the mouse that affects both screens, and happens at the same time in the video cards memory, and having observable(with a vid cam..) lag between the two monitors.

    --
    world was created 5 seconds before this post as it is.
  17. How did it make it passed? by autopr0n · · Score: 3, Insightful

    Easy. Slashdot editors are idiots who don't care a wit for the content on the site. I mean really, this site could have so much potential, but it's really been squandered by the creators. Average people who don't want to cede control to people who could actualy do a good job.

    /rant.

    --
    autopr0n is like, down and stuff.
    1. Re:How did it make it passed? by Peyna · · Score: 2, Insightful

      I mean really, this site could have so much potential, but it's really been squandered by the creators.

      Funny how they've got all that money for what they did, and managed to go from a few hundred users in the first few months to hundreds of thousands (not to mention the countless people that read and don't bother with use accounts).

      I find it amusing how everyone thinks they could do a better job, but when you only have very few people sorting through thousands of story submissions, it isn't that easy.

      --
      What?
  18. Over-aggressive command buffering... by CreateWindowEx · · Score: 2, Interesting
    I agree--definitely could be the video card.

    Caveat to the original poster--I know nothing about your Dell LCD display, and haven't looked at your video...

    Back in the DirectX 7 era, there were a number of video drivers that would use huge pushbuffers/command buffers so that you could actually have 10 or more frames worth of rendering scenes queued up before they would make it to the screen. (It's one of those naughty driver tricks that helps certain benchmark scores at the expense of actual users). It often was the case that as long as you locked the frame buffer once per frame (as older games did to display UI/overlays) it would force it to actually display in real time, but if you stopped doing that (which was what you were supposed to do for max performance) you could get as much as three seconds behind on some systems!

    Anyways, I thought that those problems were behind us, although I haven't been all that up on PC video driver stuff for a few years... However, as the parent to this post says, if the problem was due to the actual LCD response time, it wouldn't look like latency, but instead more like ghosting/smearing. I'd definitely try it on another PC first before blaming the monitor...

  19. What is this, a newsgroup?!?!? by coupland · · Score: 4, Insightful

    Since when was /. an online PC troubleshooting forum? Any doofus knows LCD screen don't suffer from "lag" -- why doesn't he call Dell or ask on a newsgroup, not take out an article on the front page of Slashdot???

    1. Re:What is this, a newsgroup?!?!? by scottking · · Score: 5, Funny

      if i had to choose between /. and Dell for tech support, no contest, i'd be posting.

      --
      scott king
  20. brrrrrinnnnggggg .... by jdkane · · Score: 4, Funny
    /.TS> Yes hello, Slashdot Tech Support speaking. How may I help you today?

    DoR> Um, my mouse lags on my Dell LCD.

    /.TS> That's what we're here for. News for Nerds, Stuff that matters. Try installing Linux and then get back to us with the results.

    DoR> How's that gonna' help?

    /.TS> Sorry, you're Offtopic -1. I see a better story coming along. Good bye and thank you for calling.

    1. Re:brrrrrinnnnggggg .... by gosand · · Score: 2, Funny
      .TS> Yes hello, Slashdot Tech Support speaking. How may I help you today?

      DoR> Um, my mouse lags on my Dell LCD.

      /.TS> That's what we're here for. News for Nerds, Stuff that matters. Try installing Linux and then get back to us with the results.

      DoR> How's that gonna' help?

      /.TS> Sorry, you're Offtopic -1. I see a better story coming along. Good bye and thank you for calling.
      ... 5 minutes later ....

      .TS> Yes hello, Slashdot Tech Support speaking. How may I help you today?


      DoR> Um, I have a new Dell LCD, and my mouse lags.

      /.TS> Hmm, let me look in our knowledge base. I have never seen anyone ask this question before. Let's see... Have you tried installing Linux?

      .
      .
      .

      --

      My beliefs do not require that you agree with them.

  21. video-card inputs by cbr2702 · · Score: 5, Funny
    One monitor runs off of my video card's digital input, and the other monitor runs off of the card's analog input.

    You might get even better results if you tried using the video card's outputs.

    --


    This post written under Gentoo-linux with an SCO IP license.
  22. Re:Response time by Spy+Hunter · · Score: 2, Interesting

    Yes, but the Dell 2001 FP has the lowest response time available in a consumer LCD on the market today (16 ms, which is less than the time one frame is displayed at 60 FPS). So if a 2001 FP can't do it, no LCD can. Besides, LCD ghosting results in a blurry picture, not lag in a clear picture.

    --
    main(c,r){for(r=32;r;) printf(++c>31?c=!r--,"\n":c<r?" ":~c&r?" `":" #");}
  23. Re:Something just occurred to me. by gl4ss · · Score: 2, Informative

    ****But the FA _still_ doesn't say what kind of mouse is being used. The video might show what kind of mouse is being used, but it appears to be SlashDotted. :)****

    the mouse used is irrelevant to the issue, the window moves on the crt before it does move on the lcd.

    mouse lag can't cause that lag.

    --
    world was created 5 seconds before this post as it is.
  24. "posted by timothy" by Anonymous Coward · · Score: 3, Funny

    'nuff said.

    1. Re:"posted by timothy" by G27+Radio · · Score: 3, Insightful

      Moderators, say goodbye to your moderation priviledges.

      (not kidding.)

    2. Re:"posted by timothy" by LittleLebowskiUrbanA · · Score: 3, Funny

      And soon to be duped by Commander Taco.

  25. Have installed lots of Dell 1901FPs by The+Fink · · Score: 2, Interesting

    ... and have never, ever, seen this problem - and we do push these screens pretty much as hard as you'd want to (it's an aircraft command and control environment). Using either DVI or analogue signals, coming out of Dell hardware (my employer's preferred supplier).

    Might be something 2001-specific, but from the description given, that sounds like an issue I'd peg on something else, not on the display.

  26. Re:Something just occurred to me. by User+956 · · Score: 2

    Dude, I'd be able to read the article if it weren't Slashdotted all to hell.

    Where are the CoralCache links?

    --
    The theory of relativity doesn't work right in Arkansas.
  27. Site and Video Mirror by cybermint · · Score: 5, Informative

    Site Mirror: Click here.
    Video Only: Click here.

  28. Re:Mouse sensitivity? by gl4ss · · Score: 2, Interesting

    i'm getting tired of this so i'll just copypaste a port of the FA.

    "
    If I scoot the mouse across the screen, there is a noticeable 9 millisecond delay between when I move the mouse and when the cursor moves. 9 milliseconds was a number I pulled out of a hat, but the point is that, yes, there is a definite delay.

    As my proof to you, I have video. I have my 2001FP as my main monitor, and my wife's old CRT as the second monitor (it used to be a better setup, but I've had three monitors die on me at home). If I move a window that spans both monitors, you can actually see the lag on the LCD screen. The video card has two outputs, and when I switch it around with the CRT as the main monitor, the lag is still visible (just to get those possible variables out of the way for you).
    "

    so, it's not sensitivity issue, it's not wireless mouse issue, it's not input issue of any kind, it pretty much can't be a graphics card issue of any kind either.

    --
    world was created 5 seconds before this post as it is.
  29. Re:Something just occurred to me. by Joe+Tennies · · Score: 4, Insightful

    I'll have to say BS on this. My suggestion is to borrow a second CRT and hook it up the same way. Most likely the lag will still be there. I have no idea what OS as the video is down. My answer is to upgrade the video drivers and check for some stupid setting being messed up.

  30. No problems with my Samsung by bigberk · · Score: 2, Interesting

    I bought a Samsung SyncMaster 171v two years ago, and brought it home fearfully waiting for the ghosting I had heard about with LCD monitors. No such experience. In my day-to-day work I don't notice any GUI delays that can be blamed on the monitor. And even when playing games (like Enemy Territory) the monitor performs beautifully.

    But I have seen other people with LCD monitors that don't seem to work as well with fast moving objects. The SyncMaster wasn't a particularly expensive model or anything, but it definitely performs well.

  31. got the message yet? :-) by macshit · · Score: 3, Interesting

    I'll join the chorus of people saying "no". Either it's a problem somewhere else in your system, or a really crappy LCD.

    I used to not like LCD monitors, especially the kind that use the analogue video out, but at work I got an NEC MultiSync LCD 1760v (17", 1280x1024 -- I know, yesterday's news, but a great step up for me :-), which has made a complete convert out of me.

    Not only does it have far better contrast and brightness than other LCD monitors I've used, but it has no ghosting of any kind, and tracks the analogue video output of my computer flawlessly. Even the industrial design is great, much better than typical "we've got a really expensive CAD system and no design sense whatsoever" designs, and I'd say on par with Apple's wonderful creations (without Apple's tendency to be a bit poncy ... "we're stylish and we're not going to let you forget it!").

    The display gamma seems to be much different than my old CRT, so it did take a bunch of adjustment to get pictures looking the same.

    Anyway, 3 thumbs up for the 1760V from me (this model is a few years old I think).

    --
    We live, as we dream -- alone....
  32. Re:I bet "Dishes of Ryan" was using a USB mouse... by Andy+Dodd · · Score: 4, Insightful

    I have never seen lag attributable to a USB mouse.

    In face, USB mice typically lag LESS than PS/2 mice because they update their position far more often.

    The option in games isn't "REDUCE MOUSE LAG", it's "SMOOTH MOUSE", which is specifically designed around the problem of mice with low update rates (namely PS/2 mice, and in some cases REALLY crappy USB mice can have a slower update rate than a PS/2 mouse but it's RARE.)

    --
    retrorocket.o not found, launch anyway?
  33. I will trade you my 20'' crt for your lcd problem by WindBourne · · Score: 4, Funny

    Hey, will even throw in shipping. :)

    --
    I prefer the "u" in honour as it seems to be missing these days.
  34. ANSWER: Virus or Spyware by reporter · · Score: 2, Funny
    I had a similar problem. The response to my pressing my keyboard keys was unusually slow. Then, I downloaded some spyware eradication software from CNET. It eradicated some spyware with which a visit to a porn site had inadvertently infected my computer.

    Everything is normal now.

    The problem with the victim's computer is not a bad display driver. The problem is spyware or a virus.

    My advice is to stop visiting those porn sites unless "Playboy Magazine" has certified them.

  35. Dell 2001FP by prothid · · Score: 2, Informative

    I have a Dell 2001FP and I have not had any such problems with it at all. In fact, I was given the title Jäger Captain Red at a recent lan party while using it to lead my team to victory in Unreal Tournament.

  36. Questions: by xigxag · · Score: 2, Insightful

    Does this effect only happen upon mouse movement, or do you detect the same problem while playing a video?

    Did you try setting your monitor resolution to 800X600 or decreasing your colors to 16-bit?

    Did you try resizing the window with your keyboard (e.g. in Windows using ALT+Space to activate the System menu)?

    Did you try seeing what happens with a different OS? (e.g Knoppix)

    Did you try changing your mouse drivers?

    --
    There are two kinds of people: 1) those who start arrays with one and 1) those who start them with zero.
  37. Re:hmmmm... by AKAImBatman · · Score: 2, Informative

    The manufacturer of my monitor clearly states that I should use 75Hz at 1280x1024. (I have a Rad-7s.)

  38. Dude, You've got Spyware! by Tibor+the+Hun · · Score: 2, Interesting

    but seriously, did you check your system for spyware. some of them buggers can hog your CPU pretty bad.

    --
    If you don't know what AltaVista is (was), get off my lawn.
  39. Re:I bet "Dishes of Ryan" was using a USB mouse... by Seoulstriker · · Score: 4, Informative

    UT2004 specifically has two options:
    1: Smooth Mouse
    2: Reduce Mouse Lag

    The normal usage of USB mice should be fine without lag, but when the computer is using all of its resources, USB doesn't get updated as quickly as it should, thus causing the mouse lag.

    PS/2 mice have better access to Windows resources and the mouse position gets updated properly and on time.

    --
    I am defenseless. Use your button. Mod me down with all of your hatred.
  40. MOD PARENT UP A BILLION FUNNY by Anonymous Coward · · Score: 2, Funny

    "Slashdot" and "unbiased journalism" in the same sentence!! COMEDY GOLD GOOD SIR

  41. Actually . . . by Dorsai42 · · Score: 3, Interesting

    the original quote is from John Glenn, when he was asked what it felt like sitting atop the rocket, ready to launch:

    "I felt about as good as anybody would, sitting in a capsule on top of a rocket that were both built by the lowest bidder." (Senator John Glenn, Colonel USMC, Retired)

    Rockhound is applying the sincerest form of flattery.

    --
    If you forget about the future, the future will forget about you.
  42. I have a Dell 2001 FP by ImTwoSlick · · Score: 2, Informative

    However, I have no problems with any kind of lag. This includes all video connections.

  43. Got a dual setup with two 2001FP UltraSharps.. by halo1982 · · Score: 2, Insightful

    At my dad's office we have a computer powered by a Parhelia hooked up to two UltraSharp 2001FPs (both through DVI...haven't tried it with analog cause whats the point) and I have never seen anything like this. They're just as good as a CRT (for CAD anyway) and the screens are gorgeous. My guess is USAR ERRAR

  44. Video is dead... but... by gt25500 · · Score: 2, Funny

    I have this monitor (2001FP) and so does my pal. I also have several other LCDs around the house. Your problem is either not the monitor is is an isolated issue.

    Can I get my problem posted on Slashdot the next time I am constipated?

    --
    _________ Help me get a PSP!
  45. The Tech FAQ Hand-Off by Mulletproof · · Score: 3, Insightful

    Now you've got me curious... No offense to the submitter, but this is obviously an isolated problem. Asking the average wage slave techie down at Best Buy could have confirmed this. Infact, nearly everybody on Slashdot has confirmed it to one degree or another. Soooo... Why is this frontpage news again? Will Slashdot start answering my unique one-shot hard drive problems now too? Hi, my name is Ed and my HDD is making an odd 'kerchunk' sound when it starts up. Have any other Slashdot users noticed this with their HDDs????? Why not? Let's convert the front page to miscellaneous hardware bug reports... Or not?

    I'd submit to you that this question should have been handed off to any number of the flatscreen FAQ sites out there, especially given how unique the problem is. We're not exactly talking about ipod batteries here.

    --
    You need a FREE iPod Nano
  46. Dude..... by moosesocks · · Score: 4, Funny

    Dude, no human has reflexes like that.

    You're either:
    a) Not human
    b) Jedi
    c) Stoned/Drunk

    Go become a fighter pilot or something like that.

    --
    -- If you try to fail and succeed, which have you done? - Uli's moose
  47. I have a 2001FP- never had your problem by luh3417 · · Score: 2, Insightful

    When *nobody* on *all* of Google has my problem, my reaction is that I'm doing something very wrong. I wonder why slashdot even publishes this question. I wonder why I'm even responding. I have a Dell 2001FP and have *never* had this "cursor lag" problem. I suggest its your video card, or driver, or maybe your machine has been taken over for use as a zombie. The 2001FP has about 4 different inputs, does the same problem exist on the analog as well as the DVI ports?

  48. No problems here, but did have a mouse issue by Mean_Nishka · · Score: 4, Informative
    I got a kick out of this story because I had experienced some mouse trouble when I first got my Dell 2001FP.

    For some reason, all of my games ran like crap after picking up the display... Game after game simply ran like a slug after the LCD was added to the mix and I couldn't figure out what the problem was.

    I finally noticed that if I took my hand off the mouse, things ran smoother.. After some trial and error I discovered my first generation optical Intellimouse Explorer didn't like the USB hub on the Dell monitor (I plugged it into the 2001FP's USB ports to add some slack on the mouse cable). While the problems were not readily apparent on the 2D apps, they were incredibly apparent in the games.

    So after moving the mouse back to the PC's main USB ports, everything improved dramatically. It gave me an excuse to pick up that new fancy Logitech laser deal.

  49. Here's my guess.... by NerveGas · · Score: 2, Interesting


    It's your mouse drivers.

    I've got a wireless mouse that has absolutely no lag under Windows - but try playing a DirectX game, and it's got tons of lag. Because I rarely game on that machine, I haven't taken the time to figure it out - but if I plug a regular USB mouse into it, it works just fine.

    steve

    --
    Oh, you're not stuck, you're just unable to let go of the onion rings.
  50. Re:Moderators on drugs? by MURL · · Score: 2, Interesting

    Some really old LCDs on early to mid 90s laptops couldn't refresh fast enough to track the mouse. My Toshiba Portege from 1997ish had already ovecome that problem.

    The laptop I had prior to that (an IBM 360C with a 486) did have the problem of the cursor fading away to nothing as you moved it. Most laptops came with a mouse driver that enabled mouse "trails" so you could keep track of the cursor.

    If I recall, there were still a few models available through about 1998 that didn't have active matrix or TFT LCDs, but not many.

    --
    --- Have you seen MURL?
  51. Re:post the image? by Waffle+Iron · · Score: 5, Informative
    I don't have a site handy, but you can make your own with Windows paint.exe. Just create a black-and-white bitmap, and the color palette is replace with various bit patterns. Floodfill the whole image with the 50% black pattern.

    You can probably do the same thing with Gimp, but it's not immediately obvious to me how to do it.

  52. Two words: anger management by John+Jorsett · · Score: 2, Insightful

    A) You can't "take out" an article on the front page of SlashDot; a moderator has to greenlight it.

    B) What the hell is is to you anyway? Skip the damned article if you're not interested.

  53. Re:No it doesn't by Old+Wolf · · Score: 2, Interesting

    There is no modification twice between sequence points in that code. Note that ',' '?' and ':' are all sequence points.

    The code you quoted is exactly identical to:

    if (++c > 31)
    {
    c = !r--;
    printf("\n");
    }
    else if (c r)
    printf(" ");
    else if (~c & r)
    printf(" `");
    else
    printf(" #");

    However the original code has undefined behaviour in other ways:
    - invalid definition of main()
    - failure to return an int from main()
    - calling of variadic function printf() without a prototype

    Having said that, running it (and presuming you're on a system where the above UBs don't cause trouble), produces a surprisingly cool effect considering the size of the program.

  54. Re:Moderators on drugs? by tarth · · Score: 2, Funny

    Don't you mean "I was an IT director back in 1996 when LCDs were still shitty, but since then I've been fired off because I'm an antagonistic and self-important fuckwad"?

  55. IDE drivers? by mrbcs · · Score: 2, Interesting
    I've seen this problem with ali chipsets and crt monitors. Need to install the proper ide drivers.

    Why? dunno.. just know I have to do it or the mouse won't work properly.

    --
    I'm not anti-social, I'm anti-idiot.
  56. my experience by sewagemaster · · Score: 2, Informative

    my university recently purchased something like 8 new labs filled with these monitors, and I havent noticed any sort of the lag mentioned in the article. at home i use a samsung syncmaster 172N and i dont notice any of that either. I think it's best to have the monitor exchanged...

    fyi, the new school computers run P4 2.8C and my home computer runs P4 3.0C -- but i doubt this has anything to do with my "lack" of lag...

  57. I have the same problem by batobin · · Score: 3, Informative

    Since everyone is skeptical, I would like to chime in and say that I'm having the exact same problem (same Dell monitor, too). Perhaps the addition of my specs will shed some light on the culprit.

    So far I've tried two different video card setups (both MacOS X on a dual 1GHz g4 power mac). The first was the GeForce 4MX card that shipped with the computer. I was using analog output to analog monitor input. Thinking the lag could be the result of analog to digital conversion, I purchased the ATI Radeon 9000 with digital output.

    I'm currently using the digital video output to digital monitor input. The problem is still there. Both cards are AGP, and I never experienced a lag before buying the Dell.

    Hopefully this helps. If I've left out something important, let me know.

  58. Oops, sorry by Tenebrious1 · · Score: 3, Funny

    Sorry, that's my keylogger that's causing the lag; it's writing all your keyboard inputs directly to my web server instead of logging and uploading the log, and that's slowing down your system.

    Please type "updateme" on your keyboard, and that will tell the keylogger to automatically update itself. Once it's updated, you shouldn't notice any lag at all.

    --
    -- If god wanted me to have a sig, he'd have given me a sense of humor.
  59. Re:No it doesn't by Minna+Kirai · · Score: 2, Informative

    Note that ',' '?' and ':' are all sequence points.

    The C standard does not require ":" to be a sequence point. The "a?b:c" construct only contains one obligatory sequence point, on the "?". It may have more, but that's unspecified (NOT undefined, which would be much worse)

  60. No. Except for NTSC video by myov · · Score: 2, Interesting

    My LCD's (2 identical units) have no lag over DVI or VGA.

    With NTSC video, the delay is noticable. Any video with motion will blur (rolling credits, hockey ads around the edge of the ice - not that it's a problem now.) Audio is completely out of sync, and I need an audio delay somewhere to make things line up.

    FWIW, the NTSC input is directly into the monitors, not through an external converter.

    --
    I use Macs to up my productivity, so up yours Microsoft!
  61. Cursor "Submarining" by MsGeek · · Score: 4, Informative

    This was a big problem with passive matrix screens. I've had old-school (black and white) PowerBooks that did this, and my first ThinkPad (365X) did this too.

    However, I have *zero* problems with this on any active-matrix screens I've ever worked with. ThinkPad 600E: lovely, crisp screen, no lag, cursor right there where you want it. PowerBook G3: the most awesome LCD I've ever seen this side of a Cinema Display. I even have a cheapy Taiwanese 15" LCD panel, Envision is the brand, and it's splendid. No lag, no lost cursors, nice and crisp.

    That sort of thing shouldn't happen with a modern TFT active matrix screen. There is something very wrong with it.

    --
    Knowledge is power. Knowledge shared is power multiplied.
    1. Re:Cursor "Submarining" by timeOday · · Score: 5, Informative
      This was a big problem with passive matrix screens.
      No, read the article:
      Note: This is different than an LCD's response time. Response time measures how quickly an LCD pixel can turn on and off. It's a measurement that is pretty much used to say how much "ghosting" you can expect.
      He's talking about fast response time (no ghosting) but noticeable latency between when the signal goes into the monitor and when it starts to be displayed (so he thinks).

      To which my question is this: if the monitor is running several frames behind the video card, where are those frames being stored? We're talking about many megabytes of image data here. A single 1600x1200x32bpp frame is over 7 megabytes. The monitor has no buffer that could do such a thing.

      To me this points to a cause in the computer rather than the monitor, perhaps in the drivers as others suggested.

    2. Re:Cursor "Submarining" by tincho_uy · · Score: 5, Funny

      Well, maybe he has, like, a reeeaally loooonng cable...

    3. Re:Cursor "Submarining" by Crasp · · Score: 2, Informative

      You just answered your own question.. congratulations. The lag appears because most of today's lcd's have a too high response time. Therefore it takes about 20ms (on an average lcd display) to let a pixel change from one color to another, therefore if you move your mouse up for example it would take 20ms for the blue windows desktop pixel to become black (border of the mouse). and than another 20ms to become white. So there is no need to store the data, it just takes 20ms to change from one color to another. This causes the so called lag.

      If you don't notice anything when playing fps games then you just have bad eyes imho.

    4. Re:Cursor "Submarining" by DarkVader · · Score: 3, Informative

      No, please don't. It just looks informative - instead, it's wrong.

      No LCD emits light, all color LCDs have to be backlit.

  62. It's the mouse, stupid! :) by mrshowtime · · Score: 4, Insightful

    I have owned several Dell displays and have had no problems. I HAVE had lot of problems with "mice" over the years. In fact I had to replace my first generation Intellimouse optical wireless as it just did not work well with my new system. I would put the blame on the mouse, more than the LCD screen. It's amazing that this obviously minor problem has gotten so much attention: I.E. try another mouse before filming yourself and complaining to the entire internet community. Heck, I was having problems all around till I unplugged my bluetooth adapter.

    --
    "Jeremy, you need to get to an internet cafe and cut and paste some appropriate sentiments about me from the world wide
  63. Re:post the image? by A.+Jordan · · Score: 3, Informative

    For Windows users, Windows will easily bring up such an image on the desktop; it's under Display Properties, Background, Pattern, 50% Gray, (at least under Win2k).

  64. My god, man - do know what you're suggesting? by Anonymous Coward · · Score: 5, Funny
    Again, moderators, stop giving mod points to idiots!

    Slashdot as we know it would cease to exist!

    Slashdot - where else you can be utterly wrong and get hailed as informative and insightful? Yeah, yeah - I meant besides FOX news.

  65. Re:Something just occurred to me. by theLOUDroom · · Score: 2, Interesting

    I'll have to say BS on this. My suggestion is to borrow a second CRT and hook it up the same way. Most likely the lag will still be there. I have no idea what OS as the video is down. My answer is to upgrade the video drivers and check for some stupid setting being messed up.

    As an EE I'll say that what the article is talking about is possible, but not likely. (It would be stupid to make a display with that much delay.)

    It comes down to this, any sort of processing has an inherent delay. If this particular LCD was using a really long pipeline to process the incoming data stream, he could be seing the effects of this.

    It's not totally crazy to believe that this is what's going on. There has already been one HDTV manufacturer who has offered to replace circuit boards inside their TVs with new ones that have faster chips due to customer complaints about the delay. Apparently some of the new TVs out there have a pretty significant problem.

    See this eariler slashdot article for details.

    --
    Life is too short to proofread.
  66. My 2001FP works wonderfully by AvaCam · · Score: 2

    Your problem is isolated to your configuration or your LCD. I have a 2001FP that I use for desktop and gaming, and I've never experienced any problems with response delay; or any other problems for that matter. Dell puts there name on some very nice LCDs and this being the second LCD I've bought from them I should know. The only shortcoming that they have is the visibility of really dark images in a lit room, but that's a problem that all LCDs and a lot of CRTs have. I would even disagree with some of the reviews on the 2001FP that downplay their performance.

  67. Re:No it doesn't by Spy+Hunter · · Score: 2, Insightful

    The definition of main is invalid in C99, but the reason it is accepted by compilers is that it is valid K&R C (which was amazingly lenient about function definitions; originally it didn't even check the types of function parameters, or convert them if they were wrong!). In fact, the old C89 standard included a lot of compatibility with K&R so it may be valid C89 as well (I can't find a copy of the C89 standard to check; stupid standards organizations). In K&R C function return values default to int if not specified, and parameters default to int too. Calling printf without a prototype I'm not so sure about; however it works on every C compiler I've tried. It appears that printf is built in to most compilers.

    --
    main(c,r){for(r=32;r;) printf(++c>31?c=!r--,"\n":c<r?" ":~c&r?" `":" #");}
  68. Re:Something just occurred to me. by BillTheKatt · · Score: 2, Informative

    Is the person reporting the problem using a wireless mouse and keyboard? I had a similar problem when using one. Seems that the 900 mhz freq on the kbd and mouse was fighting with my cordless telephone. It seemed like lag or some big CPU hog. Moved the mouse close to the transmitter and voila, everything normal.

  69. Re:Nah, need a different OS by mkldev · · Score: 5, Interesting
    Or just nuke and reinstall your existing OS. There's no way that's normal behavior unless something is really wrong. Best guess... probably some freak effect of an interrupt either not consistently being delivered or being frequently blocked by something else... you know, like the vertical blanking interrupt running at a quarter speed or something.

    That's my guess. A lot of things happen during the vertical blanking interval or on some other similar periodic interrupt. In most OSes, this includes screen updates and mouse pointer redraws. This could be anything from a buggy driver to an IRQ conflict, or possibly even a bad trace on the motherboard (though the latter isn't anywhere near as likely).

    If an OS reinstall doesn't solve the problem, there's probably something weird going on in the BIOS settings and/or the motherboard itself. Pull the BIOS battery for an hour. Try again. If that doesn't work... is your clock running slowly, too? If so, buy a new computer. If not... buy a new computer. EIther way. :-p

    <rant>And speaking of IRQ conflicts... why hasn't any motherboard manufacturer broken with tradition and actually added enough distinctly addressable interrupt lines? I mean, the Mac has supported 64+ interrupts on its interrupt controller since 1995. Does it really take a decade of engineering to figure out how to cascade two interrupt controllers and add a driver to support it? Sheesh!</rant>

    Sigh. Another victim of a 2004 computer crammed into a 1981 architecture....

    --
    120 character sigs suck. Make it 250.
  70. Hmmm... by Anonymous Coward · · Score: 2, Funny
    Re:got the message yet? :-) (Score:1) by Man in Spandex (775950)

    Followed by:

    - a slick look. no gay speakers.

    "Man in spandex" makes perjorative reference to homosexuality... methinks we have someone with some serious identity issues here. It's okay brother, embrace your inner woman...

  71. Re:I bet "Dishes of Ryan" was using a USB mouse... by Muzzarelli · · Score: 2, Interesting

    There's a kernel patch which cranks the usb mouse sampling up to 500hz. For high speed aim based games its noticeably smoother. There is also a technique for doing the same thing in XP.

  72. how to do it in GIMP by Mr+Z · · Score: 5, Informative

    The following sequence seems to do the trick w/ GIMP 1.2.x:

    • Create a new greyscale image that's the size of your screen
    • Go to "Filters->Render->Patterns->Checkerboard. " Pick a checkerboard size of 1.

    That should get you a checkerboard pattern on a 1-pixel increment. I haven't seen what this does for an LCD monitor's ability to fine tune an analog signal (since I don't own such a display), but I think it's the pattern you're using. It's the same fill pattern the old monochrome Macs used for their desktops. LOTS of edges to sync on, on every line! :-)

    --Joe
  73. Front page? by AyeRoxor! · · Score: 4, Insightful

    I submit articles about the chips in "missile defense" systems being faulty, and they're shelved. Someone incorrectly configures their cheap monitor and it makes front page? WTF?

    Here's the amazing answer: If it sucks, take it back.

    Shit.

  74. Nowhere? by Vo0k · · Score: 3, Informative

    I just don't get it. This is the most basic thing you check with the LCD display.
    Some people out there still look for higher vertical refresh rate at LCD. *sigh*

    Common features:
    Diagonal
    Color quality/reliablity [1]
    GFX input capablity. (VGA/DVI/S-Video etc)
    No missing (dark) pixels.

    Important with CRT:
    Maximum resolution
    Maximum Vertical refresh rate at resolution you most frequently use.[2]
    Image sharpness
    Black pitch [3]
    Flatscreen/Trinitron(cyllinder)/Sphere screen.

    Important with LCD:
    Default (non-interpolated) resolution [4]
    <b>Pixel switch-on time</b> (display lag)
    Pixel switch-off time (ghosts)
    Vieving polarization angle[5]
    Maximum brightness
    Working temperature range
    backlight LED lifetime [6]

    [1] These ARE different. LCDs have sugar-sweet beautiful colors, that can't be repeated in print, that's why LCDs are the worst choice for a graphician, while your average end user will enjoy the more-than-lifelike graphics immensely
    [2] On CRT image at 25HZ hurts your eyes badly. On LCD you can freely read books at 25HZ, the refresh rate doesn't mean cycles between switching the image on and off, but between changes to constant content.
    [3] Is black really black or just a shade of grey?
    [4] LCDs have one fixed resolution at which they look great, all the other resolutions suck as computer output pixels don't match display pixels.
    [5] If you don't look straight ahead at the screen, some colors just go dark on some screens.
    [6] LCD doesn't shine. LCD switches half-transparent pixels on and off, masking the white backlight LEDs off. Without backlight you'll see hardly anything. It's the backlight that eats up most of your batteries too. And it's the LEDs that die first if the screen doesn't get broken/scratched etc first.

    --
    Anagram("United States of America") == "Dine out, taste a Mac, fries"
  75. Hope this carries above the noise... by Qbertino · · Score: 2, Informative

    Since you're posting a wmv (which is bad attitude) I can't watch it. But from your description I'd say that's very strange indeed.
    I guess you're using Windows XP. It could be that the Monitor specs/drivers are changed automatically when you switch back and forth and that the one for that LCD causes the lag. Monitors are Plug and Play too, so that's very likely. I'd say you do the Knoppix test some others have recommended already. It could also be an USB Hub in the Monitor (again, don't know if you have one because you've posted a wmv) that causes trouble (interference) via the USB port when the panel is on, thus distorting and lagging the mouse signal.

    Those are my two guesses.

    And once again, if you think it's a good idea to post stuff like this on /., do please have the common decency to use a video format that's open and free for all to watch. Thank you.

    --
    We suffer more in our imagination than in reality. - Seneca
  76. Re:No it doesn't by Old+Wolf · · Score: 3, Informative

    It isn't valid in C89 (ANSI C), because main must either take no parameters, or take one of type (int) and one of type (char **). However, ANSI C compilers are allowed to silently compile this program (and perhaps fail at runtime).

    Calling a function without prototype assumes the function was declared as:
    int f();
    (NOT int f(...) as another poster mentioned, this isn't even a valid declaration as there must be at least one non-variadic parameter)
    which means that the number and type of the parameters are not yet known, and it is undefined behaviour if any call to f doesn't match[%] the actual definition of f(), wherever that might be.

    Calling a variadic function without prototype is specifically undefined behaviour (for example, many compilers use a different calling convention for variadic functions to non-variadic functions, as another poster mentioned).
    However if the convention is the same (eg. gcc on IA32) then it's likely to work correctly. (But still non-portable, obviously).

    [%] The number of arguments must be the same, and they must have the same types after the default argument promotions: float->double, and (integer-type-smaller-than-int)->int, (other-types)->(stay-the-same)

  77. IRQs by Lonewulf01 · · Score: 2, Interesting

    Some ASUS boards, (eg A7V8X-X) support advanced IRQ management - when the board runs out of IRQs, it creates virtual interrupts and assigns them instead :) Very handy, I currently have somewhere between 20-25 IRQs on my system :)

  78. Re:Nah, need a different OS by mausmalone · · Score: 2, Interesting

    Not to ignore your suggestions, but the computer was the same across 2 setups and only the monitor changed. Therefore, it's probably only the monitor that's a problem. There have been numerable /. articles about cheap displays using crappy DSP's, which caused a significant lag (significant enough to have audio and video out of sync). Could this be the problem?

    --
    -=-=-=-=-=
    I'd rather be flamed than ignored.
  79. Re:Nah, need a different OS by nial-in-a-box · · Score: 2, Insightful

    I'd be willing to bet that it is the monitor. Maybe it's just a fluke, or maybe it's just a bad model. Dell isn't exactly known for excellent quality, regardless of who makes the underlying components. I've found especially with the rush to the LCD market that many displays do not perform as specified, especially those that are coupled with a TV tuner. It is basically shocking how shoddy some of this stuff is, and it's even more shocking that we are paying for it and not complaining. Of course, you can also get lucky like I did and get a brand-new $300 17" LCD that performs on par with Apple's 17". Unfortunately, that deal has come and gone.

    --
    I am feeling fat and sassy
  80. I have two of these by willith · · Score: 4, Informative

    I'm at work right now, and I have two Dell 2001FPs running dual-monitor. I was able to replicate *exactly* what's shown in the video--when dragging a window that spans both displays, the window moves faster on the primary display (on the left) than on the secondary display (on the right).

    It's not the monitor. It's not CRT vs. LCD. It looks like that's the way Windows deals with multi-monitors.

    I humbly suggest that the article submitter swap his displays and use the LCD as primary, and see if the CRT then displays the lag. Bet you dollars to donuts that it will.

  81. Rodent's don't talk to displays... by LqqkOut · · Score: 2, Interesting
    As with any other device on your computer, the mouse is controlled by software which displays a little arrow on top of your windowing system. In other words, it's not the monitor's responsibility to know where the mouse pointer appears, it only knows how to display the entire screen image.

    Here's an experiment, type a bunch of text in your favorite text editor or play some audio files with a low-impact spectrum analyzer - if both of these sync properly, then you'll know not to blame the monitor. Also, check video drivers, plug another monitor in for testing... Troubleshooting is your friend.

    --

    -- In Soviet Russia, radio listens to YOU!

  82. To answer all your questions... by Dishes+of+Ryan · · Score: 5, Insightful

    First of all, thank you, everybody, for taking a look at this. I received a characteristically Slashdotty wealth of "you're an idiot" replies, and a good number of "I didn't read the full article and/or watch the video so I'm jumping to conclusions" replies as well. =) Those of you that read the article and offered your genuine insight, thank you.

    It's all fine, though. I'd like to answer a few randomly culled questions here, and also summarize what I've found based on all the feedback so other potential LCD owners can get a better feel for what they're up against.

    1. It's not the mouse. If you look at the video (which many of you probably couldn't), you'll see that I have a dual-head setup that includes a CRT. It's lightning-quick responsive on the CRT.
    2. As I mentioned in the full article, even when I use a single head setup with just the LCD, the same lag is present. And to those that guarantee switching to a single head CRT on the system will show the same lag. I've tried that in the past, and, again, the CRT is lightning-quick.
    3. I'm running at the native resolution (1600x1200) with things like ClearType off, running over DVI. For that matter, if I do switch it to a non-native res, it still exhibits the same level of lagginess. Same goes with switching it to analog. Same lag.
    4. I've used this LCD with many different computers (laptops, other desktop machines) and the problem replicates itself on every machine, regardless of OS or drivers.
    5. I've seen the same lag on every LCD I've ever seen or used, although the problem is not as great as this one. Examples are my laptop, work computers, family computers, etc. If you think that you don't have a lag, you probably do (compare with a CRT), but you're probably blessed with one that is minimal enough to not be immediately perceptible. My laptop is much more useable for things like games because the lag isn't nearly as bad.
    6. People that use this LCD for gaming that claim they have no problems, I'd suggest you try switching back to a CRT for a comparison. The "feel" will likely immediately clue you in to the difference.
    7. It's not the driver, as guaranteed as you'd like to say it is. I've tried every driver on the planet. Also, see #4 above.
    8. Others recognize this to be an issue as well, with their 2001FPs and others. Some of the comments say that they hate LCDs for this very reason. A good number of people who primarily game have returned their LCDs because it messes them up on games like CS or Unreal Tournament.
    9. To those that think I should have taken this to a troubleshooting forum on Dell or elsewhere, there was apparently an issue posted about it on Dell's site. Someone's solution was to bring it down to a 1280x1024. See #3. Other than Dell's site, I was unable to find mention of it anywhere else, even though, yes, GIMF.

    The overall summary, which you may or may not agree with is: Most LCDs are laggier than CRTs (I'd be jumped in an alley if I went as far as to say *all* LCDs are, but I try to avoid sweeping generalizations). Do your own tests, and come to your own conclusions. If you're a gamer, be careful. And lastly, my Dell 2001FP may in fact be one of the laggiest LCDs in existence, *or* I just received a defective unit.

    Thanks again, everybody, for the replies. I hope this helps some people. I know that I at least saw one person in the comments that learned something new, although it was, in fact, for something unrelated to the immediate post. =)

    1. Re:To answer all your questions... by crabpeople · · Score: 2, Informative

      "Most LCDs are laggier than CRTs"

      no actually they're not. i have had a dual head video card with VGA cables for years. one crt and one LCD. i just enabled the mirroring thing so that both monitors display the same image and i will tell you 100% confidence that this DOES NOT happen on my monitor.
      conclusion, its a software or specific hardware problem on your monitor. also, where i work we have easily 100+ LCD screens. i have never noticed any perceivable lag on any of the machines, albiet i dont do alot of FPS gaming at work.

      "I've seen the same lag on every LCD I've ever seen or used, although the problem is not as great as this one."
      then how come SO MANY PEOPLE including myself, that use LCD's and CRT's daily, have never noticed it? ever.

      my suggestion is to RMA the damn monitor and try another of the same model.

      --
      I'll just use my special getting high powers one more time...
  83. The problem is the video card, not the monitor by yeremein · · Score: 4, Informative

    If you're running games at the native resolution of your display (1600x1200), the most probable reason for the lag you're seeing is that your video card simply can't keep up. It takes a pretty beefy video card to push that many pixels per frame. Try cutting the resolution to 800x600 and see if your results improve.

    Another thing to try would be toggling the "vertical sync" option in your video card's advanced properties. This option specifies whether your video card synchronizes frames with the monitor's refresh. Your CRT probably refreshed at 100Hz, and your LCD is probably just 60Hz, so vertical sync could be slowing you down even if you haven't increased your display resolution.

  84. Nonsense today, perhaps by SeanDuggan · · Score: 3, Interesting

    IIRC, the infamous "code to explode a monitor" trick involved setting monitors to refresh rates that the monitor could not handle, causing the monitor to burn out or, in extreme cases, explode. It was a small subset of the monitors, but it was one of those things that made it into popular lore. I belive they even referenced it in Cryptonomicon, having a character who supposed had his face mangled by an exploding monitor triggered by a virus of some sort.

    --
    This sig has absolutely no significance and serves only to take up screen space and waste the time of the reader.
  85. No K by mopslik · · Score: 5, Funny

    It turned out his keyboard had a faulty K key, and the K was not appearing on his screen either.

    And thus the GNOME project was born...

  86. Interrupts... by feloneous+cat · · Score: 2, Interesting

    IIRC, the interrupt controller ORIGINALLY used in the IBM PC (Programmable Interrupt Controller? I think that was what the part was called) could, in theory, cascade to as many interrupts as your heart desires.

    So why did they stop at so few?

    Need vs. cost. Most people (i.e. the masses) don't need very many interrupts. They are going to play a few games, check their mail and that pretty much covers it.

    So, what do you expect from a low cost platform but low quality specs? Blame the masses and the designers. Much like getting cheap coffee - you get what you pay for.

    --
    IANAL, but I've seen actors play them on TV
  87. Spend more money by gphinch · · Score: 2, Informative

    My 23" Cinema Display has zero problems. My 15" Powerbook works great as well, both separate and when used attached to the CD. Go Apple!

    --
    in bed.
  88. Translation. . . by Fantastic+Lad · · Score: 3, Informative
    When I got my flatscreen, (A Samsung Syncmaster 570V - A fine piece of no-lag hardware), I was curious about how the thing worked.

    So, of course, it got opened.

    Specifically, I was curious about the fact that I was able to plug the thing directly into my (very) old graphics card which was built before there were such things as desk top flat screens, and actually have it work.

    The signal being output by a graphics card is designed to be understandable by the average computer CRT. --Which, (when I've opened those in the past), don't contain a whole lot of extra electronics beyond on-off switches and very basic control systems. That is, with a standard CRT, the signal from the graphics card in my compy pretty much feeds directly into the electron gun and magnetics control system of the CRT monitor with very little intermediary electronics in between. All the really clever electronics is done by the graphics card back in the tower case.

    So. . .

    Since TFT monitors work on a radically different principal than CRT technology, this means that the output signal from my old graphics card, (which I'm guessing is analog), must be translated into a very different type of signal which can be interpreted by the TFT screen electronics, which I am guessing is a digital signal.

    This would mean. . .

    The original image dreamed up by the computer is digital, then converted to analog by the graphics card so that the CRT can apply it, and then because there is no CRT, it is converted back again into a digital signal for the TFT.

    Oh yeah. Now that's efficiency!

    And it worried me, actually. When I was shopping for my flatscreen, I was bugging sales people, "So are you SURE I don't need some kind of proprietary graphics card to run this thing? If that's the case, then I'm no going to get a flatscreen. I need a GOOD graphics card. Not some hunk of standardized junk made by the flatscreen manufacturer!"

    The sales guys always just shook their heads. "No sir. You just plug it in."

    "Oh. . ." I wasn't feeling very reassured.

    But what do you know? I plugged it in, and no problem. It worked like a charm. So, like I said, I had to open it up.

    When unscrewed and pulled apart, voila! Unlike the guts of a standard CRT, there before me inisde the TFT was a whole LOT of extra circuit board and chip set confusion sitting between the monitor cable plug and the flexi-cable which feeds into the actual screen system. So there is some serious signal in interpretation going on! --And none of it, I imagine, would be industry standard; each CRT to TFT signal converter is probably designed and built by whoever happens to be making the flatscreen. This extra engineering necessity provides a whole pile of room to make bad decisions and crappy electronics.

    My guess is that this is where the lag you are experiencing is coming from.

    For my part, I was fortunate in that Samsung did the job well. I ended up with a system which works invisibly, with no perceivable lag between any input and screen output. Perhaps you can sell your screen off on Ebay and get a better monitor.

    Of course, the problem may be something else entirely, but that's my two cents. Hope it helped!


    -FL

  89. Geek eye-workouts by Dogtanian · · Score: 2, Funny

    When the resolution is set to 60Hz which is the lowest, the screen flickers. That is a fact.

    I know. BTW, you think that's bad? The first computer I used was a ZX81 (Timex/Sinclair 1000 with 1K) attached to a PAL TV. Which has a 50Hz refresh rate... and black-on-white text.

    If what you say is true, this explains why my eyes are fucked. OTOH, it could be that all the exercise makes your eye muscles stronger, like going down to the gym.

    "Yeah, I *did* know that my display can go higher than 60Hz; I'm giving my eyes a workout. I'm doing a drop-set. When they can't take 60Hz any longer, I'll turn it up to 65Hz, then 72Hz... See that guy over there with the black-and-white TV with no vertical hold and bottleful of protein shake? He's the Mr.Universe of the eyeball world. I swear it's true."

    --
    "Slashdot - News and Chat Sites Deviant". (Click "homepage" link above for details).