Results 1 to 6 of 6

Thread: How to configure OpenGL to highest possible quality?

  1. #1

    How to configure OpenGL to highest possible quality?

    Turn on things like Antialiasing, Anisotropic and filter of textures
    From brazil (:

    Pascal pownz!

  2. #2

    How to configure OpenGL to highest possible quality?

    Antialiasing should be already enabled depending on OpenGL settings in your Display driver options.
    Edit: Oops, may need glHint() at least with some of these: GL_POINT_SMOOTH_HINT, GL_LINE_SMOOTH_HINT, GL_POLYGON_SMOOTH_HINT

    Here's something about texture filters, look for part "Texture Parameters":
    http://www.nullterminator.net/gltexture.html

  3. #3

    How to configure OpenGL to highest possible quality?

    Quote Originally Posted by User137
    Antialiasing should be already enabled depending on OpenGL settings in your Display driver options.
    Edit: Oops, may need glHint() at least with some of these: GL_POINT_SMOOTH_HINT, GL_LINE_SMOOTH_HINT, GL_POLYGON_SMOOTH_HINT

    Here's something about texture filters, look for part "Texture Parameters":
    http://www.nullterminator.net/gltexture.html
    thanks
    From brazil (:

    Pascal pownz!

  4. #4

    How to configure OpenGL to highest possible quality?

    To set antialiasing you have to specify some weird parameters using a gl extension when you create your device context. So essentially you have to create a window twice when you start your program
    Peregrinus, expectavi pedes meos in cymbalis
    Nullus norvegicorum sole urinat

  5. #5

    How to configure OpenGL to highest possible quality?

    Quote Originally Posted by JSoftware
    To set antialiasing you have to specify some weird parameters using a gl extension when you create your device context. So essentially you have to create a window twice when you start your program
    it is called multisampling, see GL_MULTISAMPLE.
    This is my game project - Top Down City:
    http://www.pascalgamedevelopment.com...y-Topic-Reboot

    My OpenAL audio wrapper with Intelligent Source Manager to use unlimited:
    http://www.pascalgamedevelopment.com...source+manager

  6. #6

    How to configure OpenGL to highest possible quality?

    Quote Originally Posted by Delfi
    Quote Originally Posted by JSoftware
    To set antialiasing you have to specify some weird parameters using a gl extension when you create your device context. So essentially you have to create a window twice when you start your program
    it is called multisampling, see GL_MULTISAMPLE.
    move info please

    if possible the code snipet to turn AA on
    From brazil (:

    Pascal pownz!

Bookmarks

Posting Permissions

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