Lines Matching defs:width
45 int32 width, height, stride;
49 RasBuf32(int32 width, int32 height, int32 stride, int32 orgX, int32 orgY, int32 *colors):
50 width(width), height(height), stride(stride), orgX(orgX), orgY(orgY), colors(colors)
55 width = bmp->Bounds().IntegerWidth() + 1;
65 width = 0x7fffffff;
77 if (x + w > width) {w = width - x;}
81 width = w;
84 width = 0; height = 0; colors = NULL;
104 dst.stride -= dst.width;
106 for (int32 i = dst.width; i > 0; i--)
118 dst.ClipSize(x, y, src.width, src.height);
119 src.ClipSize(-x, -y, width, height);
121 memcpy(dst.colors, src.colors, 4*dst.width);
309 SoftwareRenderer::FrameResized(float width, float height)
311 TRACE("%s: %f x %f\n", __func__, width, height);
314 fWidth = (GLuint)width;