Lines Matching defs:width
40 int width;
59 width = (int)(tgaHeader[12]) | ((int)(tgaHeader[13]) << 8);
62 stride = width * bitsPerPixel / 8;
74 image = deImage_create(width, height, format);
86 deARGB* dst = (deUint32*)((deUint8*)image->pixels + dstY*image->width*bpp);
91 for (x = 0; x < width; x++)
122 int width = image->width;
147 tgaHeader[12] = (char)(width & 0xFF);
148 tgaHeader[13] = (char)(width >> 8);
161 for (ndx = 0; ndx < width * height; ndx++)