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

Thread: textureQueryLod on Catalyst 10.6

  1. #1
    Junior Member Newbie
    Join Date
    Sep 2005
    Posts
    27

    textureQueryLod on Catalyst 10.6

    The ARB_texture_query_lod extension spec talks about a function textureQueryLOD, and the GLSL 4.00 spec talks about a similar function called textureQueryLod.(note the difference in CapiTALizatIOn).

    I'm using Catalyst 10.6 on AMD64 Ubuntu.
    These drivers claim to support Opengl 4.0 but if I try to use a shader with #version 400 that calls textureQueryLod I get shader compiler errors and the shader info log says
    "No matching overloaded function found textureQueryLod".

    On the other hand if I use #extension GL_ARB_texture_query_lod and textureQueryLOD, everything appears to work fine.

  2. #2
    Senior Member OpenGL Guru
    Join Date
    May 2009
    Posts
    4,726

    Re: textureQueryLod on Catalyst 10.6

    I'm using Catalyst 10.6 on AMD64 Ubuntu.
    What hardware are you using?

  3. #3
    Junior Member Newbie
    Join Date
    Sep 2005
    Posts
    27

    Re: textureQueryLod on Catalyst 10.6

    Quote Originally Posted by Alfonse Reinheart
    I'm using Catalyst 10.6 on AMD64 Ubuntu.
    What hardware are you using?
    Radeon HD5770

  4. #4
    Super Moderator Frequent Contributor Groovounet's Avatar
    Join Date
    Jul 2004
    Posts
    936

    Re: textureQueryLod on Catalyst 10.6

    Yeap, that's a bug! I reported it to AMD too and it has been confirmed.

  5. #5
    Intern Contributor
    Join Date
    Feb 2010
    Location
    China
    Posts
    69

    Re: textureQueryLod on Catalyst 10.6

    textureQueryLOD is defined in the extension and textureQueryLod is defined in the OpenGL4.0/GLSL400. It's obvious that the Cat driver only derives the function from GL_ARB_texture_query_lod. It's an oversight in our job.
    We will fix it soon. You could take the workaround way to make your program work as using textureQueryLOD under GLSL 400 before it gets fixed. Thanks for your feedback.

Posting Permissions

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