Home | History | Annotate | Download | only in win

Lines Matching refs:rect

134     Rect m_fullscreenRect;
171 Rect rect = { 0, 0, 0, 0 };
172 m_fullscreenRect = rect;
224 Rect naturalRect;
225 Rect initialRect;
313 Rect bounds;
371 Rect bounds;
399 Rect bounds;
434 Rect bounds;
602 Rect rect = { 0, };
605 GetMovieNaturalBoundsRect(m_private->m_movie, &rect);
606 width = (rect.right - rect.left) * m_private->m_widthScaleFactor;
607 height = (rect.bottom - rect.top) * m_private->m_heightScaleFactor;
1127 Rect rect = m_private->m_fullscreenWindow->portRect;
1130 int windowWidth = rect.right - rect.left;
1131 int windowHeight = rect.bottom - rect.top;
1138 rect.left = offsetX;
1139 rect.right = offsetX + actualWidth;
1140 rect.top = offsetY;
1141 rect.bottom = offsetY + actualHeight;
1143 SetMovieBox(m_private->m_movie, &rect);