Enum specifying how a Movie caches decoded frames.
Example
// CacheAll keeps every decoded frame in memory — smoothest replay for short // loops. CacheNone decodes on demand — preferred for long videos to bound // memory. Assign after construction: `movie.cacheMode = Movie.CacheMode.CacheAll`. constroot = newWidget(parent); constlayout = newBoxLayout(); layout.setDirection(Direction.TopToBottom); root.layout = layout;
Enum specifying how a Movie caches decoded frames.
Example