• Home
  • Raw
  • Download

Lines Matching refs:tempImage

53    const GLubyte *tempImage = NULL;  in _mesa_texstore_rgb_dxt1()  local
68 tempImage = malloc(srcWidth * srcHeight * 3 * sizeof(GLubyte)); in _mesa_texstore_rgb_dxt1()
69 if (!tempImage) in _mesa_texstore_rgb_dxt1()
71 tempImageSlices[0] = (GLubyte *) tempImage; in _mesa_texstore_rgb_dxt1()
79 pixels = tempImage; in _mesa_texstore_rgb_dxt1()
93 free((void *) tempImage); in _mesa_texstore_rgb_dxt1()
107 const GLubyte *tempImage = NULL; in _mesa_texstore_rgba_dxt1() local
121 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte)); in _mesa_texstore_rgba_dxt1()
122 if (!tempImage) in _mesa_texstore_rgba_dxt1()
124 tempImageSlices[0] = (GLubyte *) tempImage; in _mesa_texstore_rgba_dxt1()
136 pixels = tempImage; in _mesa_texstore_rgba_dxt1()
148 free((void*) tempImage); in _mesa_texstore_rgba_dxt1()
162 const GLubyte *tempImage = NULL; in _mesa_texstore_rgba_dxt3() local
176 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte)); in _mesa_texstore_rgba_dxt3()
177 if (!tempImage) in _mesa_texstore_rgba_dxt3()
179 tempImageSlices[0] = (GLubyte *) tempImage; in _mesa_texstore_rgba_dxt3()
191 pixels = tempImage; in _mesa_texstore_rgba_dxt3()
202 free((void *) tempImage); in _mesa_texstore_rgba_dxt3()
216 const GLubyte *tempImage = NULL; in _mesa_texstore_rgba_dxt5() local
230 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte)); in _mesa_texstore_rgba_dxt5()
231 if (!tempImage) in _mesa_texstore_rgba_dxt5()
233 tempImageSlices[0] = (GLubyte *) tempImage; in _mesa_texstore_rgba_dxt5()
245 pixels = tempImage; in _mesa_texstore_rgba_dxt5()
256 free((void *) tempImage); in _mesa_texstore_rgba_dxt5()