Thread: advantages of display lists...

  1. #1
    l'Anziano DavidP's Avatar
    Join Date
    Aug 2001
    Location
    Plano, Texas, United States
    Posts
    2,743

    Post advantages of display lists...

    David's old FPS rate: 60
    David's FPS rate with textures and 3ds models: 10
    David's NEW FPS rate with no textures or models: 18

    David's FPS rate with Display Lists, and no textures or models: 20

    ....seems like I should be getting better FPS with display lists than i am.....
    My Website

    "Circular logic is good because it is."

  2. #2
    Banned
    Join Date
    Jan 2003
    Posts
    1,708
    there's no guarantee that display lists will ever do jack crap for you, it depends on the implementation of GL.

    display lists just compile the geometry onto video memory so you don't have to pimp the agp bus every cycle

  3. #3
    *******argv[] - hu? darksaidin's Avatar
    Join Date
    Jul 2003
    Posts
    314
    Originally posted by Silvercord
    display lists just compile the geometry onto video memory so you don't have to pimp the agp bus every cycle
    Do you know if this is guaranteed and how it can be controlled ? I mean what happens if video memory is full etc.
    [code]

    your code here....

    [/code]

  4. #4
    Registered User VirtualAce's Avatar
    Join Date
    Aug 2001
    Posts
    9,607
    If video memory is full then system memory or onboard memory is used via the bus which is slower.

    AGP does not only give access to video memory on video cards. It also is given access to the onboard memory to use as video memory by the mobo. The amount is determined by your BIOS setting - AGP aperture size. AGP is given priority when requesting the bus. In fact AFAIK it does not request the bus, it takes it at will and the mobo circuitry holds back the info already going through the bus. All of this is transparent to the CPU which is why AGP is so fast and so versatile.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Totally confused on assigment using linked lists
    By Uchihanokonoha in forum C++ Programming
    Replies: 8
    Last Post: 01-05-2008, 04:49 PM
  2. Can I have some Sample Code? (OpenGL, glDrawPixels();)
    By Shamino in forum Game Programming
    Replies: 98
    Last Post: 11-03-2005, 10:46 AM
  3. Display Lists (OpenGL)
    By Shamino in forum Game Programming
    Replies: 11
    Last Post: 06-05-2005, 12:11 PM
  4. Linked Lists 101
    By The Brain in forum C++ Programming
    Replies: 5
    Last Post: 07-24-2004, 04:32 PM
  5. Tab Controls - API
    By -KEN- in forum Windows Programming
    Replies: 7
    Last Post: 06-02-2002, 09:44 AM