DevBug wrote:Added more control over alpha blending. Use love.graphics.setBlendFunc(src, dest) and love.graphics.getBlendFunc(). See the blending example.
There has been some talk about this in the issue tracker: Issue 98. The consesus seems to be that this is too low level.
DevBug wrote:Changed love.graphics.clear() to add support for love.graphics.clear(r, g, b, a)
What's wrong with setBackgroundColor? Especially since most of the time love.graphics.clear() isn't used anyway...
DevBug wrote:Add support for video playback
This has been on the wish-list a long time. Go for it!
vrld wrote:
There has been some talk about this in the issue tracker: Issue 98. The consesus seems to be that this is too low level.
Yes, I know that having something too low-level is feared. I think that more control over alpha blending is a good thing, I'm going change it up quite a bit
vrld wrote:What's wrong with setBackgroundColor? Especially since most of the time love.graphics.clear() isn't used anyway...
I'm going to change that, I'm moving it into the frame buffer and using the background color.
vrld wrote:This has been on the wish-list a long time. Go for it!
I've looked at libraries and have decided to go with SMPEG; it looks like I'll have to maintain my own copy of it due to performance issues, the inability to skip to previous frames, etc.