FlushBatchDraw
This function is used to refresh the undisplayed drawing.
// Refreshes the undisplayed drawing
void FlushBatchDraw();
// Refreshes the undisplayed drawing in the specified region
void FlushBatchDraw(
int left,
int top,
int right,
int bottom
);
Parameters
left
The left x-coordinate of the specified region.
top
The top y-coordinates of the specified region.
right
The right x-coordinate of the specified region.
bottom
The bottom y-coordinates of the specified region.
Return Value
None
Examples
See the example of BeginBatchDraw.