pendingFrames property

List<void Function()> pendingFrames
final

Frames whose work the GPU has not "finished".

Held rather than run, so a test can decide when a frame is over — which is the whole question the renderer's finished-frame textures turn on.

Implementation

final List<void Function()> pendingFrames = <void Function()>[];