Tom Butterworth

Results 94 comments of Tom Butterworth

yea, get/setCurrentFrame have to step through the movie until they get to the frame - it's not ideal. Using get/setPosition is faster.

Thanks - what graphics drivers are you using?

Thanks for the report. We should probably set the blend function in draw() when the movie has alpha, so I'll reopen this until that is done.

Please no more requests for updates. Pull-requests are welcome if you'd like to implement it yourself.

Yeah it's on the list to do. For now you'll have to use new/delete (or probably std::shared_ptr to do that for you).

or use a shared_ptr and let it take care of delete for you ``` std::vector videos; // ... videos.push_back(std::make_shared()); ```

Yep, loading happens in the background. This should be clearer, maybe we should add isLoading() or some such. For the moment, if you have called load() and isLoaded() returns false...

Can you provide a minimal project to demonstrate your problem?