Home | History | Annotate | Download | only in bitmap

Lines Matching defs:picture

100                *picture,
109 picture = malloc(widthBytes * height);
110 if (!picture) {
111 bdfError("Couldn't allocate picture (%d*%d)\n", widthBytes, height);
115 picture = NULL;
116 pCI->bits = (char *) picture;
152 picture[nextByte++] = bdfHexByte(pInBits);
157 picture[nextByte++] = 0;
162 if (mask && picture[nextByte - 1] & ~mask) {
163 picture[nextByte - 1] &= mask;
170 picture[nextByte++] = 0;
186 if (picture != NULL) {
188 BitOrderInvert(picture, nextByte);
191 TwoByteSwap(picture, nextByte);
193 FourByteSwap(picture, nextByte);
198 if (picture)
199 free(picture);