1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 22:50:23 +00:00
QB64-PE/internal/help/_AUTODISPLAY.txt

18 lines
749 B
Plaintext
Raw Normal View History

2016-03-18 11:36:04 +00:00
{{DISPLAYTITLE:_AUTODISPLAY}}
The {{KW|_AUTODISPLAY}} statement enables the automatic display of the screen image changes previously disabled by {{KW|_DISPLAY}}.
{{PageSyntax}}
:<code>{{KW|_AUTODISPLAY}}</code>
{{PageDescription}}
* {{KW|_AUTODISPLAY}} is on by default and displays the screen at around 30 frames per second (normal vertical retrace speed).
* {{KW|_DISPLAY}} disables automatic graphic displays, but it also eliminates having to use PCOPY or page flipping when used correctly. Placing _DISPLAY after screen draws or other screen changes assures completion of the changes before they are displayed. The speed of QB64 code execution makes this a viable option.
{{PageSeeAlso}}
* {{KW|_DISPLAY}}
{{PageNavigation}}