Searched defs:clear_rect (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Ddevice.c486 static BOOL is_full_clear(const struct wined3d_surface *target, const RECT *draw_rect, const RECT *clear_rect) argument
495 if (clear_rect && (clear_rect->left > 0 || clear_rect->top > 0
496 || clear_rect->right < target->resource.width
497 || clear_rect->bottom < target->resource.height))
504 DWORD location, const RECT *draw_rect, UINT rect_count, const RECT *clear_rect, RECT *out_rect)
535 if (!clear_rect)
542 IntersectRect(&r, draw_rect, clear_rect);
545 /* clear_rect ⊇ draw_rec
503 prepare_ds_clear(struct wined3d_surface *ds, struct wined3d_context *context, DWORD location, const RECT *draw_rect, UINT rect_count, const RECT *clear_rect, RECT *out_rect) argument
561 const RECT *clear_rect = (rect_count > 0 && rects) ? (const RECT *)rects : NULL; local
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Ddevice.c4483 const RECT *scissor_rect, const WINED3DRECT *clear_rect)
4498 if (clear_rect && (clear_rect->x1 > 0 || clear_rect->y1 > 0
4499 || clear_rect->x2 < target->currentDesc.Width
4500 || clear_rect->y2 < target->currentDesc.Height))
4512 const WINED3DRECT *clear_rect = (Count > 0 && pRects) ? pRects : NULL; local
4533 if (!is_full_clear(target, vp, scissor_rect, clear_rect))
4590 if (!(depth_stencil->Flags & location) && !is_full_clear(depth_stencil, vp, scissor_rect, clear_rect))
4482 is_full_clear(IWineD3DSurfaceImpl *target, const WINED3DVIEWPORT *viewport, const RECT *scissor_rect, const WINED3DRECT *clear_rect) argument

Completed in 55 milliseconds