Lines Matching refs:internalformat

55 bool IsUnsizedInternalFormat(GLint internalformat);
56 GLenum GetBaseInternalFormat(GLint internalformat);
95 Image(Texture *parentTexture, GLsizei width, GLsizei height, GLint internalformat)
96 : sw::Surface(parentTexture->getResource(), width, height, 1, 0, 1, gl::SelectInternalFormat(internalformat), true, true),
97 width(width), height(height), depth(1), internalformat(internalformat), parentTexture(parentTexture)
105 Image(Texture *parentTexture, GLsizei width, GLsizei height, GLsizei depth, int border, GLint internalformat)
106 : sw::Surface(parentTexture->getResource(), width, height, depth, border, 1, gl::SelectInternalFormat(internalformat), true, true),
107 width(width), height(height), depth(depth), internalformat(internalformat), parentTexture(parentTexture)
115 Image(GLsizei width, GLsizei height, GLint internalformat, int pitchP)
116 : sw::Surface(nullptr, width, height, 1, 0, 1, gl::SelectInternalFormat(internalformat), true, true, pitchP),
117 width(width), height(height), depth(1), internalformat(internalformat), parentTexture(nullptr)
124 Image(GLsizei width, GLsizei height, GLint internalformat, int multiSampleDepth, bool lockable)
125 : sw::Surface(nullptr, width, height, 1, 0, multiSampleDepth, gl::SelectInternalFormat(internalformat), lockable, true),
126 width(width), height(height), depth(1), internalformat(internalformat), parentTexture(nullptr)
134 static Image *create(Texture *parentTexture, GLsizei width, GLsizei height, GLint internalformat);
137 static Image *create(Texture *parentTexture, GLsizei width, GLsizei height, GLsizei depth, int border, GLint internalformat);
140 static Image *create(GLsizei width, GLsizei height, GLint internalformat, int pitchP);
143 static Image *create(GLsizei width, GLsizei height, GLint internalformat, int multiSampleDepth, bool lockable);
167 return internalformat;
221 const GLint internalformat;