logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

imageSize - retrieve the dimensions of an image

Declaration

intimageSize(gimage1Dimage);ivec2imageSize(gimage2Dimage);ivec3imageSize(gimage3Dimage);ivec2imageSize(gimageCubeimage);ivec3imageSize(gimageCubeArrayimage);ivec2imageSize(gimageRectimage);ivec2imageSize(gimage1DArrayimage);ivec3imageSize(gimage2DArrayimage);intimageSize(gimageBufferimage);ivec2imageSize(gimage2DMSimage);ivec3imageSize(gimage2DMSArrayimage);

Description

imageSize returns the dimensions of the image bound to image. The components in the return value are
       filled in, in order, with the width, height and depth of the image. For the array forms, the last
       component of the return value is the number of layers in the texture array.

Name

       imageSize - retrieve the dimensions of an image

Parameters

image
           Specifies the image to which the texture whose dimensions to retrieve is bound.

See Also

textureSize(), imageLoad(), imageStore()

Version Support

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

See Also