Lines Matching refs:dest_width
194 GX_PIXELMAP *image_reader::ResizeImage(GX_PIXELMAP *src, int dest_width, int dest_height) in ResizeImage() argument
196 if (!mPixelmapList.GetCount() || dest_width <= 0 || dest_height <= 0) in ResizeImage()
207 int output_stride = CalculateOutputStride(dest_width); in ResizeImage()
220 newmap->gx_pixelmap_width = dest_width; in ResizeImage()
247 int aux_data_size = ((dest_width + 7) >> 3)* dest_height; in ResizeImage()
274 int aux_data_size = dest_width * dest_height; in ResizeImage()
292 dest_width, dest_height, src, newmap); in ResizeImage()
299 int dest_width, int dest_height, GX_PIXELMAP *src, GX_PIXELMAP *dest) in BitmapStretch() argument
320 BitmapStretchStep(dest_width, src_width, yIn, yOut, src, dest); in BitmapStretch()
334 void image_reader::BitmapStretchStep(int dest_width, in BitmapStretchStep() argument
351 dx = dest_width; in BitmapStretchStep()
360 stride = CalculateOutputStride(dest_width); in BitmapStretchStep()
375 int DestAuxStride = dest_width; in BitmapStretchStep()
379 DestAuxStride = (dest_width + 7) >> 3; in BitmapStretchStep()