Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
en:software:qview:qview_6:qcl_library:vi11waitbufferreadyusingwait [2017/02/27 18:07] – created qem103 | en:software:qview:qview_6:qcl_library:vi11waitbufferreadyusingwait [2019/08/29 17:01] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== VI11WaitBufferReadyUsingWAIT ====== | ||
+ | |||
+ | **V = **// | ||
+ | |||
+ | **I = **//Image// | ||
+ | |||
+ | Function that is used to manage the Vector Image feature (object that resides on some versions of Qpaint). | ||
+ | |||
+ | The VI11WaitBufferReadyUsingWAIT function is __used to wait for the conclusion of the design phase was started__.\\ | ||
+ | A Wait instruction inside causes the statement following the line of calling this function, be done only when the design phase on the Vector Image is permanently closed. | ||
+ | |||
+ | ===== HISTORY ===== | ||
+ | |||
+ | The VI11WaitBufferReadyUsingWAIT function replaces the previous [[.: | ||
+ | |||
+ | ===== IMPLEMENTATION ===== | ||
+ | |||
+ | **VI11WaitBufferReadyUsingWAIT (awBuffer)** | ||
+ | |||
+ | Parameters: | ||
+ | |||
+ | ^IN/ | ||
+ | | IN | ARRSYS /\\ ARRGBL | ||
+ | |||
+ | === Example === | ||
+ | |||
+ | //TASK_00// | ||
+ | <code QCL> | ||
+ | MAIN: | ||
+ | | ||
+ | VI11WaitBufferReadyUsingWAIT( awBuffer ) ; | ||
+ | ... | ||
+ | VI10DrawBuffer( awBuffer ) ; | ||
+ | |||
+ | glPippo = 1000 | ||
+ | </ | ||
+ | |||
+ | === Note === | ||
+ | |||
+ | * This function contains the WAIT. Not for use in a task that requires the full implementation of the instructions at each cycle. | ||