Name

updatePixels

Description Updates the display window with the data in the pixels list. Use in conjunction with loadPixels(). If you're only reading pixels from the list, there's no need to call updatePixels() — updating is only necessary to apply changes.

Certain renderers may or may not seem to require loadPixels() or updatePixels(). However, the rule is that any time you want to manipulate the pixels list, you must first call loadPixels(), and after changes have been made, call updatePixels(). Even if the renderer may not seem to use this function in the current Processing release, this will always be subject to change.

Currently, while none of the renderers use the additional parameters to updatePixels(), this may be implemented in the future.
Syntax
	updatePixels()
Related loadPixels
pixels
Creative Commons License