Lines Matching defs:height
41 int height;
60 height = (int)(tgaHeader[14]) | ((int)(tgaHeader[15]) << 8);
74 image = deImage_create(width, height, format);
82 for (y = 0; y < height; y++)
85 int dstY = yFlipped ? (height-1 - y) : y;
123 int height = image->height;
149 tgaHeader[14] = (char)(height & 0xFF);
150 tgaHeader[15] = (char)(height >> 8);
161 for (ndx = 0; ndx < width * height; ndx++)