Home | History | Annotate | Download | only in devices

Lines Matching refs:width

48   VideoWindow(int x, int y, int width, int height);
54 bool SetSize(int width, int height);
99 void OnSize(int width, int height, bool frame_changed);
114 int x, int y, int width, int height)
122 bmi_.bmiHeader.biWidth = width;
124 bmi_.bmiHeader.biSizeImage = width * height * 4;
137 bool GdiVideoRenderer::VideoWindow::SetSize(int width, int height) {
142 } else if (width != bmi_.bmiHeader.biWidth ||
144 SendMessage(handle(), kSetSizeMsg, 0, MAKELPARAM(width, height));
216 void GdiVideoRenderer::VideoWindow::OnSize(int width, int height,
230 width + ptDiff.x, height + ptDiff.y, false);
234 if (frame_changed && (width != bmi_.bmiHeader.biWidth ||
237 bmi_.bmiHeader.biWidth = width;
239 bmi_.bmiHeader.biSizeImage = width * height * 4;
264 bool GdiVideoRenderer::SetSize(int width, int height, int reserved) {
266 window_.reset(new VideoWindow(initial_x_, initial_y_, width, height));
268 return window_->SetSize(width, height);