Re: [whatwg] Hardware accelerated canvas

----- Original Message -----
> On Sun, 2 Sep 2012, Erik Möller wrote:
> >
> > As we hardware accelerate the rendering of , not just with
> > the webgl
> > context, we have to figure out how to best handle the fact that
> > GPUs loose the
> > rendering context for various reasons. Reasons for loosing the
> > context differ
> > from platform to platform but ranges from going into power-save
> > mode, to
> > internal driver errors and the famous long running shader
> > protection.
> > A lost context means all resources uploaded to the GPU will be gone
> > and have
> > to be recreated. For canvas it is not impossible, though IMO
> > prohibitively
> > expensive to try to automatically restore a lost context and
> > guarantee the
> > same behaviour as in software.
> > The two options I can think of would be to:
> > a) read back the framebuffer after each draw call.
> > b) read back the framebuffer before the first draw call of a
> > "frame" and build
> > a display list of all other draw operations.
> > 
> > Neither seem like a particularly good option if we're looking to
> > actually
> > improve on canvas performance. Especially on mobile where read-back
> > performance is very poor.
> > 
> > The WebGL solution is to fire an event and let the
> > js-implementation deal with
> > recovering after a lost context
> > http://www.khronos.org/registry/webgl/specs/latest/#5.15.2
> > 
> > My preferred option would be to make a generic context lost event
> > for canvas,
> > but I'm interested to hear what people have to say about this.
> 
> Realistically, there are too many pages that have 2D canvases that
> are
> drawn to once and never updated for any solution other than "don't
> lose
> the data" to be adopted. How exactly this is implemented is a quality
> of
> implementation issue.

With all the current graphics hardware, this means "don't use a GL/D3D surface to implement the 2d canvas drawing buffer storage", which implies: "don't hardware-accelerate 2d canvases".

If we agree that 2d canvas acceleration is worth it despite the possibility of context loss, then Erik's proposal is really the only thing to do, as far as current hardware is concerned.

Erik's proposal doesn't worsen the problem in anyway --- it acknowledges a problem that already exists and offers to Web content a way to recover from it.

Hardware-accelerated 2d contexts are no different from hardware-accelerated WebGL contexts, and WebGL's solution has been debated at length already and is known to be the only thing to do on current hardware. Notice that similar solutions preexist in the system APIs underlying any hardware-accelerated canvas context: Direct3D's lost devices, EGL's lost contexts, OpenGL's ARB_robustness context loss statuses.

Benoit

> 
> --
> Ian Hickson               U+1047E                )\._.,--....,'``.
>    fL
> http://ln.hixie.ch/       U+263A                /,   _.. \   _\  ;`._
> ,.
> Things that are impossible just take longer.
>   `._.-(,_..'--(,_..'`-.;.'

Received on Sunday, 2 September 2012 22:15:15 UTC