en:software:qview:qview_6:qcl_library:vi10waitbufferreadyusingwait

This translation is older than the original page and might be outdated. See what has changed.

VI10WaitBufferReadyUsingWAIT

V = Vector

I = Image

Function that is used to manage the Vector Image feature (object that resides on some versions of Qpaint).

The VI10WaitBufferReadyUsingWAIT function is used to wait for the conclusion of the design phase was started.
A Wait statement inside causes the statement following the line of calling this function, be done only when the design phase on the Vector Image is definitively concluded.

VI10WaitBufferReadyUsingWAIT (awBuffer)

Parameters:

IN/OUTVARIABLE TYPEEXAMPLE NAMEDIM
IN ARRSYS /
ARRGBL
awBuffer W Array that serves as a buffer for instructions/data

Example

TASK_00

MAIN:
 
VI10DrawBuffer(awBuffer )			   ;Draws the contents of the Buffer
 
VI10WaitBufferReadyUsingWAIT( awBuffer )	   ;Awaits the conclusion of the drawing
 
glPippo = 1000		                           ;(This statement runs only at the end of the design process)

Note

  • This function contains the WAIT. Not for use in a task that requires the full implementation of the instructions at each cycle.
  • Last modified: 2019/08/29 17:01