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

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dsurface.c317 static inline void surface_get_rect(IWineD3DSurfaceImpl *This, const RECT *rect_in, RECT *rect_out) argument
320 *rect_out = *rect_in;
323 rect_out->left = 0;
324 rect_out->top = 0;
325 rect_out->right = This->currentDesc.Width;
326 rect_out->bottom = This->currentDesc.Height;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dsurface.c389 static void surface_get_rect(const struct wined3d_surface *surface, const RECT *rect_in, RECT *rect_out) argument
392 *rect_out = *rect_in;
395 rect_out->left = 0;
396 rect_out->top = 0;
397 rect_out->right = surface->resource.width;
398 rect_out->bottom = surface->resource.height;

Completed in 60 milliseconds