logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

textureQueryLevels - compute the number of accessible mipmap levels of a texture

Declaration

inttextureQueryLevels(gsampler1Dsampler);inttextureQueryLevels(gsampler2Dsampler);inttextureQueryLevels(gsampler3Dsampler);inttextureQueryLevels(gsamplerCubesampler);inttextureQueryLevels(gsampler1DArraysampler);inttextureQueryLevels(gsampler2DDArraysampler);inttextureQueryLevels(gsamplerCubeArraysampler);inttextureQueryLevels(gsampler1DShadowsampler);inttextureQueryLevels(gsampler2DShadowsampler);inttextureQueryLevels(gsamplerCubeShadowsampler);inttextureQueryLevels(gsampler1DArrayShadowsampler);inttextureQueryLevels(gsampler2DArrayShadowsampler);inttextureQueryLevels(gsamplerCubeArrayShadowsampler);

Description

textureQueryLevels returns the number of accessible mipmap levels in the texture associated with sampler.

       If called on an incomplete texture, or if no texture is associated with sampler, zero is returned.

Name

       textureQueryLevels - compute the number of accessible mipmap levels of a texture

Parameters

sampler
           Specifies the sampler to which the texture whose mipmap level count will be queried is bound.

See Also

texelFetch(), texelFetchOffset(), texture(), textureGather(), textureGatherOffset(),
       textureGatherOffsets(), textureGrad(), textureGradOffset(), textureLod(), textureLodOffset(),
       textureOffset(), textureProj(), textureProjGrad(), textureProjGradOffset(), textureProjLod(),
       textureProjLodOffset(), textureProjOffset(), textureSize()

Version Support

       ┌────────────────────┬───────────────────────────────────────────────────────────────────────────────────┐
       │                    │        OpenGLShadingLanguageVersion                                            │
       ├────────────────────┼──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┤
       │ Function1.101.201.301.401.503.304.004.104.204.304.404.50 │
       │ Name               │      │      │      │      │      │      │      │      │      │      │      │      │
       ├────────────────────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┤
       │ textureQueryLevels │  -   │  -   │  -   │  -   │  -   │  -   │  -   │  -   │  -   │  ✔   │  ✔   │  ✔   │
       └────────────────────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┘

See Also