Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:software:qview:qview_6:qcl_library:vi10addnop [2017/03/16 16:54] – created qem103en:software:qview:qview_6:qcl_library:vi10addnop [2019/08/29 17:01] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== VI10AddNop ======
 +
 +**V = **//Vector//
 +
 +**I = **//Image//
 +
 +Function that is used to manage the Vector Image feature (object that resides on some Qpaint versions).
 +
 +The VI10AddNop function __add the NOP command queued to be processed instructions in the Buffer to perform the drawing__.\\
 +The NOP command (No Operation) is a command that does not perform any operation to Vector Image. Can be useful for clearing a Buffer operation without having to completely rewrite the entire Buffer.
 +
 +|Buffer|
 +|{{:software:qview:qview 5:funzioni_qcl:vi10addnop:vi10addnop.png?nolink200|}}|
 +
 +===== IMPLEMENTATION =====
 +
 +**VI10AddNop (awBuffer)**
 +
 +Parameters:
 +
 +^IN/OUT^VARIABLE TYPE^EXAMPLE NAME^DIM^^
 +|  IN  |  ARRSYS /\\ ARRGBL  |  awBuffer  |  W  |Array that serves as a buffer for instructions/data|
 +
 +=== Example ===
 +
 +//TASK_00//
 +<code QCL>
 +
 +MAIN:
 +
 +VI10InitBuffer (awBuffer) ;Initializes the Buffer
 +
 +VI10AddNop (awBuffer)    ;Add the NOP command
 +
 +.... 
 +
 +WAIT 1
 +JUMP MAIN
 +
 +END
 +</code>
 +
 +=== Note ===