Home | History | Annotate | Download | only in qemu

Lines Matching full:width

33 _get_pitch( int  width, QFrameBufferFormat  format )
38 return width*2;
47 int width,
56 if (!qfbuff || width < 0 || height < 0)
59 pitch = _get_pitch( width, format );
75 qfbuff->width = width;
95 qfbuff->phys_width_mm = (int)(0.5 + 25.4 * qfbuff->width / x_dpi);
157 /* swap width and height if new rotation requires it */
158 int temp = qfbuff->width;
159 qfbuff->width = qfbuff->height;
161 qfbuff->pitch = _get_pitch( qfbuff->width, qfbuff->format );