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 6 of 6

Thread: anisotropic filter in opengl

  1. #1
    Junior Member Newbie
    Join Date
    Mar 2011
    Posts
    2

    anisotropic filter in opengl

    Hey Guys,

    I need to know how anisotropic filter is implemented in OpenGL. Specifically what is the shape of the sampling filter on the texture. Is it a ellipse like EWA. Where can I find exact details about it ?. I looked at lot of resources on internet but they seem to add to the confusion.

    I would wait for good pointers on this issue.

    Best Regards,
    Jagmohan Singh

  2. #2
    Super Moderator OpenGL Lord
    Join Date
    Dec 2003
    Location
    Grenoble - France
    Posts
    5,655

    Re: anisotropic filter in opengl

    The way to perform anisotropic filter is not specified in OpenGL, hardware implementers are free to do it the way they want.

    Not sure about this, but they seem to prefer to keep such details for themselves as I never seen concrete info on this topic. Patents may also be a problem.

  3. #3
    Intern Contributor
    Join Date
    Sep 2010
    Posts
    74

    Re: anisotropic filter in opengl

    Here is the specification of the extension.

  4. #4
    Junior Member Newbie
    Join Date
    Mar 2011
    Posts
    2

    Re: anisotropic filter in opengl

    Thanks for the link. It is not clear what is the function tau.

    Best Regards,
    Jagmohan Singh

  5. #5
    Senior Member OpenGL Guru
    Join Date
    May 2009
    Posts
    4,723

    Re: anisotropic filter in opengl

    It is not clear what is the function tau.
    Does it matter? Remember: that section is preceded by the text:

    Quote Originally Posted by The Spec
    The following describes one particular approach to implementing anisotropic texture filtering for the 2D texturing case:
    (emphasis added).

    This section does not say that this is how it must be implemented; it only says that this is how it might be implemented. So even if you knew exactly how that suggested implementation worked, it would say precious little about what any particular hardware actually does.

    Be advised that anisotropic filtering changes based on driver-related settings. Driver settings can override your aniso choices, or they can affect the specific way in which aniso works for your application.

    In short, the only thing you can truly know about anisotropic filtering is that it will probably look better than standard linear-mipmap-linear minification filtering. And that higher numbers will generally help improve the quality of the result.

  6. #6
    Super Moderator OpenGL Lord
    Join Date
    Dec 2003
    Location
    Grenoble - France
    Posts
    5,655

    Re: anisotropic filter in opengl

    In short, the only thing you can truly know about anisotropic filtering is that it will probably look better than standard linear-mipmap-linear minification filtering. And that higher numbers will generally help improve the quality of the result
    ... and increase rendering time at the same time.

Posting Permissions

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