Hello I want to draw a pie chart and animate it according to current value. My target is like this: http://codepen.io/jtarr/pen/upFGC It is relative easy to implement the animation using CSS or canvas graphics with 60fps. How can I create those effect with pixijs in WebGL context? I thought using canvas is a hurdle for 60fps in mobile device? Please let me know any tips or directions. Thanks.
Finally I got simple but better, faster pie chart. http://goo.gl/mzFrB0 I left the link for whoever needs this. Basic idea is same with @alex_h. In my case, I simply use semi-circle image which is white foreground color. Then I come up with three sprites. First one is for foreground, second is for background. And final one is used to control and shape pie by changing tint & rotation according to target angle. Thanks for sharing and hinting me for all you guys.