Results 1 to 2 of 2

Thread: How Fast Are Vertex Buffers?

  1. #1

    Thread Starter
    Hyperactive Member singularis's Avatar
    Join Date
    Nov 2006
    Location
    Over There!
    Posts
    372

    Question How Fast Are Vertex Buffers?

    I have been coding with DirectX8 for a while and have always used user primatives, this is because it requires less code. I then came across a website that stated that using vertex buffers could speed up your program due to something with the graphics card (I will look it up).

    My main question would be, is it worth having a tiny vertex buffer with only 4 coordinates?
    If what I said was helpful, give me rep!

    My Complete Games: -- 2D Zone (Space Shooter game) || _2D Zone 2_ || Ninja Blob (2D platformer) || Dren (Co-op up to 4 player base defence game)

    My Projects: -- The Dread Engine (2D VB game Engine) || A* Path Finding


    An excellent site for learning DirectX7, 8 & 9 (for VB6, C# & VB.net) would be: directx4vb.vbgamer.com --- For my projects and games see: pieper.freehostia.com

  2. #2
    PowerPoster jcis's Avatar
    Join Date
    Jan 2003
    Location
    Argentina
    Posts
    4,430

    Re: How Fast Are Vertex Buffers?

    Quote Originally Posted by singularis
    My main question would be, is it worth having a tiny vertex buffer with only 4 coordinates?
    No, Vertex Buffer uses Hardware memory in the Graphics card, and old ones doesn't support it. Also, 4 coordinates? you don't need it, the main advantage about Vertex Buffers is speed, the hard work is sent to the Graphics card when using a big meshes with many many vertexes.
    I don't know about DX but OpenGL has other ways to gain speed, like creating Linked Lists. Note that Linked Lists and Vertex buffers should never be used together.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width