Lines Matching refs:tmpImage
102 GLfloat *tmpImage, *p; in copy_rgba_pixels() local
142 tmpImage = (GLfloat *) malloc(width * height * sizeof(GLfloat) * 4); in copy_rgba_pixels()
143 if (!tmpImage) { in copy_rgba_pixels()
148 p = tmpImage; in copy_rgba_pixels()
154 p = tmpImage; in copy_rgba_pixels()
157 tmpImage = NULL; /* silence compiler warnings */ in copy_rgba_pixels()
199 free(tmpImage); in copy_rgba_pixels()
249 GLfloat *p, *tmpImage, *depth; in copy_depth_pixels() local
289 tmpImage = (GLfloat *) malloc(width * height * sizeof(GLfloat)); in copy_depth_pixels()
290 if (!tmpImage) { in copy_depth_pixels()
294 p = tmpImage; in copy_depth_pixels()
299 p = tmpImage; in copy_depth_pixels()
302 tmpImage = NULL; /* silence compiler warning */ in copy_depth_pixels()
339 free(tmpImage); in copy_depth_pixels()
353 GLubyte *p, *tmpImage, *stencil; in copy_stencil_pixels() local
386 tmpImage = (GLubyte *) malloc(width * height * sizeof(GLubyte)); in copy_stencil_pixels()
387 if (!tmpImage) { in copy_stencil_pixels()
391 p = tmpImage; in copy_stencil_pixels()
396 p = tmpImage; in copy_stencil_pixels()
399 tmpImage = NULL; /* silence compiler warning */ in copy_stencil_pixels()
435 free(tmpImage); in copy_stencil_pixels()