Hello Guys, Has anyone got experience on drawing a hollow circle with Pixi?, my current approach only works in the WebGL renderer which makes me think it's flawed, and i also need to fallback to the other rendered for other devices. this.mathPiDub = 2 * Math.PI; this.color = 0xFF00FF var nuRad = 10; this.pixiCircle.beginFill(this.color, 1); this.pixiCircle.arc(0, 0, nuRad - 2, 0, this.mathPiDub, false); this.pixiCircle.arc(0, 0, nuRad, 0, this.mathPiDub, false); this.pixiCircle.endFill(); The 2D rendered gives me a full circle while the WebGL cuts the hole through. What's the best approach? Thanks!. Naz.