Part of the Khronos Group
OpenGL.org

The Industry's Foundation for High Performance Graphics

from games to virtual reality, mobile phones to supercomputers

Results 1 to 4 of 4

Thread: Enabling FSAA at runtime

  1. #1
    Junior Member Newbie
    Join Date
    May 2002
    Location
    Germany
    Posts
    12

    Enabling FSAA at runtime

    Hi,

    I wonder if it is possible to change FSAA mode at runtime with c calls. If so, some keywords or pointers to articles would be really nice.

    Thanks.
    devrim.

  2. #2
    Junior Member Newbie
    Join Date
    May 2002
    Location
    Germany
    Posts
    12

    Re: Enabling FSAA at runtime

    I need to add :

    I am running linux. So no wgl extension can help me.
    devrim.

  3. #3
    Member Regular Contributor
    Join Date
    Mar 2001
    Posts
    466

    Re: Enabling FSAA at runtime

    Originally posted by mderdem:
    I need to add :

    I am running linux. So no wgl extension can help me.

    Hi

    the WGL extension is to create a context with FSAA, As I know there is also a GLX extensions. And then at runtime you use the GL_ARB_multisample extension to enable/disable FSAA.

    Look into SGIS extensions registry

    Bye
    ScottManDeath

  4. #4
    Junior Member Newbie
    Join Date
    May 2002
    Posts
    17

    Re: Enabling FSAA at runtime

    There is a function in GLUT:

    glutInitDisplayString ();

    that permits to change the number of samples that you are using. I tried once to use it but doesn't work properly. Although you could try it.
    glutInitDisplayString ("samples=NUM");

    where NUM is the number of samples that you wants.

Posting Permissions

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