updatePixels method

Future<void> updatePixels()

Applies all recent operations to the in-memory pixel buffer.

This is a no-op for PImage because pixels are always kept in an in-memory buffer.

Implementation

Future<void> updatePixels() async {
  // No-op: our pixels are always updated
}