Lines Matching defs:image
39 #include "image.h"
1011 /* alloc image storage */
1044 /* put the bitmap image into the texture image */
1400 * chance that we're destroying a bitmap image that's in a texture
1438 GLvoid *image;
1440 image = _mesa_unpack_image(dimensions, width, height, depth,
1442 if (pixels && !image) {
1445 return image;
1450 GLvoid *image;
1463 image = _mesa_unpack_image(dimensions, width, height, depth,
1468 if (!image) {
1471 return image;
5017 GLvoid *image;
5022 image = malloc(size);
5023 if (!image) {
5027 memcpy(image, data, size);
5029 return image;