Syntax
virtual void put_screen(
int x,
int y,
float scale_x,
float scale_y,
int spr_no=0,
CL_DisplayCard *card=NULL);
Parameters
x | - | x coordinate to draw surface. |
y | - | y coordinate to draw surface. |
scale_x | - | scale x multiplyer. |
scale_y | - | scale y multiplyer. |
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
|