Lines Matching refs:mipmap
200 GGLSurface& mipmap = editMip(level); in reallocate() local
201 if (mipmap.data) in reallocate()
202 free(mipmap.data); in reallocate()
204 mipmap.data = (GGLubyte*)malloc(size); in reallocate()
205 if (!mipmap.data) { in reallocate()
206 memset(&mipmap, 0, sizeof(GGLSurface)); in reallocate()
211 mipmap.version = sizeof(GGLSurface); in reallocate()
212 mipmap.width = w; in reallocate()
213 mipmap.height = h; in reallocate()
214 mipmap.stride = s; in reallocate()
215 mipmap.format = format; in reallocate()
216 mipmap.compressedFormat = compressedFormat; in reallocate()