Syntax
virtual void put_screen(
int x,
int y,
int size_x,
int size_y,
int spr_no=0,
CL_DisplayCard *card=NULL);
Parameters
| x | - | x coordinate to draw surface. |
| y | - | y coordinate to draw surface. |
| size_x | - | width of the image when scaled. |
| size_y | - | height of the image when scaled. |
| spr_no | - | subsprite number to use. |
| card | - | Display card to be drawn onto. If NULL it will use the currently selected video card by CL_Display. |
Description
Draws the surface onto the backbuffer - scaling it to a specified size.
Back to index
|