Thread: I'm looking for the fastest!

  1. #1
    Unregistered User Yarin's Avatar
    Join Date
    Jul 2007
    Posts
    2,158

    I'm looking for the fastest!

    I'm looking for the absolute most fastest 3d graphics engine/driver that I can get for free. (For the windows platform ofcourse, if it can run else where thats fine.) The only requirement I can think that I would need are basic depth testing and texturing (maybe some blending), I don't need things like lighting.

    Right now I'm using OpenGL, but I guessing (and hoping) that there is somthing faster avalible.

  2. #2
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    OpenGL is pretty fast if you use the right things. Of course, how fast it is depends on what hardware you have.

    Other libraries usually don't have any hardware support at all, so whilst it may be faster in pure software to use other things, it immediately looses to OpenGL when you start using hardware that supports even minimal 3D accelleration.

    --
    Mats
    Compilers can produce warnings - make the compiler programmers happy: Use them!
    Please don't PM me for help - and no, I don't do help over instant messengers.

  3. #3
    Reverse Engineer maxorator's Avatar
    Join Date
    Aug 2005
    Location
    Estonia
    Posts
    2,318
    OpenGL and DirectX are the only 3D engines installed on most of the computers. If you want to try something else, then you have to deal with compatibility issues and force people into installing drivers and other stuff like that... and probably there are few drivers for specific hardware when dealing with rarely used engines...

    I'm also a performance freak and I would also gladly use something that is fast, but I've never got the idea to search for a new 3D rendering engine...

    I think I'm going to googelize abit now.

    Hmm... google doesn't seem to understand I want stuff that are in the same group with DirectX and OpenGL.
    Last edited by maxorator; 11-07-2007 at 02:53 PM.
    "The Internet treats censorship as damage and routes around it." - John Gilmore

  4. #4
    Frequently Quite Prolix dwks's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    8,057
    Why would you want the fastest library available? Sure, right now, that might seem like the most desirable feature in a graphics library. But later on, when you modify your code, maybe you'll decide that you want those lighting effects or whatever . . . and if you use a really fast but few-featured graphics library, you'll just have to convert your code to work with OpenGL or something.

    All I'm saying is, a fast library is obviously a nice thing to have -- but don't sacrifice other things like portability or extensibility just to have a library that's 2.4% faster, unless you're aware of what might happen if you do.
    dwk

    Seek and ye shall find. quaere et invenies.

    "Simplicity does not precede complexity, but follows it." -- Alan Perlis
    "Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
    "The only real mistake is the one from which we learn nothing." -- John Powell


    Other boards: DaniWeb, TPS
    Unofficial Wiki FAQ: cpwiki.sf.net

    My website: http://dwks.theprogrammingsite.com/
    Projects: codeform, xuni, atlantis, nort, etc.

  5. #5
    Cat without Hat CornedBee's Avatar
    Join Date
    Apr 2003
    Posts
    8,895
    There are no viable 3d hardware interfaces aside from OpenGL and DirectX. Glide only ever worked with Voodoo cards, and there simply isn't anything else. Unless you find a way to low-level interface with the vendor drivers, and guess how much documentation is available for that.
    All the buzzt!
    CornedBee

    "There is not now, nor has there ever been, nor will there ever be, any programming language in which it is the least bit difficult to write bad code."
    - Flon's Law

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Fastest way to search the table ( or array )
    By prayami in forum C++ Programming
    Replies: 5
    Last Post: 03-17-2008, 04:56 PM
  2. Fastest way to draw a vertical line
    By CrazyNorman in forum Game Programming
    Replies: 7
    Last Post: 10-17-2006, 09:59 AM
  3. Replies: 4
    Last Post: 10-16-2006, 12:04 PM
  4. the fastest algorthm to order?
    By ^DJ_Link^ in forum C Programming
    Replies: 20
    Last Post: 03-18-2004, 08:00 AM
  5. Fastest way to sort strings?
    By criticalerror in forum C++ Programming
    Replies: 11
    Last Post: 03-05-2004, 12:18 PM