Lines Matching refs:tempImage
61 const GLubyte *tempImage = NULL; in _mesa_texstore_rgb_fxt1() local
73 tempImage = malloc(srcWidth * srcHeight * 3 * sizeof(GLubyte)); in _mesa_texstore_rgb_fxt1()
74 if (!tempImage) in _mesa_texstore_rgb_fxt1()
76 tempImageSlices[0] = (GLubyte *) tempImage; in _mesa_texstore_rgb_fxt1()
84 pixels = tempImage; in _mesa_texstore_rgb_fxt1()
101 free((void*) tempImage); in _mesa_texstore_rgb_fxt1()
116 const GLubyte *tempImage = NULL; in _mesa_texstore_rgba_fxt1() local
127 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte)); in _mesa_texstore_rgba_fxt1()
128 if (!tempImage) in _mesa_texstore_rgba_fxt1()
130 tempImageSlices[0] = (GLubyte *) tempImage; in _mesa_texstore_rgba_fxt1()
139 pixels = tempImage; in _mesa_texstore_rgba_fxt1()
156 free((void*) tempImage); in _mesa_texstore_rgba_fxt1()