Home | History | Annotate | Download | only in win

Lines Matching refs:clip_state

223   ClipState* clip_state = reinterpret_cast<ClipState*>(param);
224 if (GetParent(window) == clip_state->parent && IsWindowVisible(window)) {
227 ExcludeClipRect(clip_state->dc,
228 bounds.left - clip_state->x,
229 bounds.top - clip_state->y,
230 bounds.right - clip_state->x,
231 bounds.bottom - clip_state->y);
1856 ClipState clip_state;
1857 clip_state.x = window_rect.left;
1858 clip_state.y = window_rect.top;
1859 clip_state.parent = hwnd();
1860 clip_state.dc = dc;
1862 reinterpret_cast<LPARAM>(&clip_state));