Home | History | Annotate | Download | only in libGLESv2

Lines Matching defs:ImageIndex

7 // ImageIndex.h: A helper struct for indexing into an Image array
17 struct ImageIndex
23 ImageIndex(const ImageIndex &other);
24 ImageIndex &operator=(const ImageIndex &other);
28 static ImageIndex Make2D(GLint mipIndex);
29 static ImageIndex MakeCube(GLenum target, GLint mipIndex);
30 static ImageIndex Make2DArray(GLint mipIndex, GLint layerIndex);
31 static ImageIndex Make3D(GLint mipIndex, GLint layerIndex = ENTIRE_LEVEL);
36 ImageIndex(GLenum typeIn, GLint mipIndexIn, GLint layerIndexIn);