gfx-rs / gfx_scene

deprecated
Apache License 2.0
15 stars 1 forks source link

Simplify sorting #21

Closed kvark closed 9 years ago

kvark commented 9 years ago

This PR exposes the queue, allowing the user to sort as he will. Object gets exposed as well, and it provides helper methods for back-to-front and front-to-back ordering.

kvark commented 9 years ago

Just realized we can't do this, because scene rendering calls enqueue and flush in succession, thus disallowing any sort of manual control...

kvark commented 9 years ago

Actually, it will work if we change gfx_scene to reflect that. In particular, we may use the same Sort enum there.