Home | History | Annotate | Download | only in deimage

Lines Matching refs:height

40 	DE_ASSERT(deInBounds32(y, 0, image->height));
44 deImage* deImage_create (int width, int height, deImageFormat format)
52 image->height = height;
54 image->pixels = deMalloc(width * height * bpp);
60 memset(image->pixels, 0, width * height * bpp);
99 int height = image->height;
100 deImage* converted = deImage_create(width, height, format);
105 memcpy(converted->pixels, image->pixels, width * height * deImageFormat_getBytesPerPixel(format));
109 for (y = 0; y < height; y++)
120 int srcHeight = srcImage->height;
129 float yFloat = ((float)y + 0.5f) / (float)dstHeight * (float)srcImage->height - 0.5f;
164 int height = image->height;
167 for (y = 0; y < height; y++)
191 return image->height;