Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Issue 766333003: canvas: fix bugs on HTMLCanvasElement::copiedImage() (Closed)

Created:
6 years ago by dshwang
Modified:
6 years ago
CC:
blink-reviews, krit, pdr+graphicswatchlist_chromium.org, Dominik Röttsches, blink-reviews-html_chromium.org, jbroman, danakj, dglazkov+blink, Rik, f(malita), Stephen Chennney, aandrey+blink_chromium.org, rwlbuis
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Project:
blink
Visibility:
Public.

Description

canvas: fix bugs on HTMLCanvasElement::copiedImage() HTMLCanvasElement::copiedImage() has two bugs: 1. Must remove copiedImage after swap buffer. It's because copiedImage(BackBuffer) must return transparent image after swap buffer. 2. Must keep copiedImage of FrontBuffer and BackBuffer separately. It's because there is a potential bug that HTMLCanvasElement::copiedImage(FrontBuffer) returns BackBuffer, because m_copiedImages is used to cache both. However the 2nd bug is hard to be reproduced because copiedImage(FrontBuffer) is called by only CSSCanvasValue::image() and Editor::copyImage() and copiedImage(BackBuffer) is called by only ImageBitmap ctor. TEST=fast/canvas/canvas-createImageBitmap-webgl.html BUG=438986 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=187239

Patch Set 1 #

Patch Set 2 : Don't use DrawingBuffer::Client #

Patch Set 3 : drop vector #

Total comments: 4

Patch Set 4 : rephrase this test so that the expectations don't contain failure #

Unified diffs Side-by-side diffs Delta from patch set Stats (+67 lines, -20 lines) Patch
M LayoutTests/fast/canvas/canvas-createImageBitmap-webgl.html View 1 2 3 2 chunks +44 lines, -8 lines 0 comments Download
M LayoutTests/fast/canvas/canvas-createImageBitmap-webgl-expected.txt View 1 2 3 2 chunks +10 lines, -0 lines 0 comments Download
M Source/core/html/HTMLCanvasElement.cpp View 1 2 3 1 chunk +5 lines, -3 lines 0 comments Download
M Source/core/html/canvas/CanvasRenderingContext.h View 1 1 chunk +2 lines, -1 line 0 comments Download
M Source/core/html/canvas/WebGLRenderingContextBase.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/canvas/WebGLRenderingContextBase.cpp View 1 2 3 2 chunks +5 lines, -7 lines 0 comments Download

Messages

Total messages: 15 (3 generated)
dshwang
As The behavior change of Window.createImageBitmap(HTMLCanvasElement) (https://codereview.chromium.org/776293002/) is rejected, I wanna fix HTMLCanvasElement::copiedImage(SourceDrawingBuffer) bugs which ...
6 years ago (2014-12-08 19:23:24 UTC) #2
Justin Novosad
On 2014/12/08 19:23:24, dshwang wrote: > As The behavior change of Window.createImageBitmap(HTMLCanvasElement) > (https://codereview.chromium.org/776293002/) is ...
6 years ago (2014-12-08 19:54:27 UTC) #3
dshwang
https://codereview.chromium.org/766333003/diff/40001/Source/core/html/HTMLCanvasElement.cpp File Source/core/html/HTMLCanvasElement.cpp (right): https://codereview.chromium.org/766333003/diff/40001/Source/core/html/HTMLCanvasElement.cpp#newcode715 Source/core/html/HTMLCanvasElement.cpp:715: needToUpdate |= m_context->paintRenderingResultsToCanvas(sourceBuffer); On 2014/12/08 19:54:27, junov wrote: > ...
6 years ago (2014-12-08 20:17:09 UTC) #4
Justin Novosad
On 2014/12/08 20:17:09, dshwang wrote: > https://codereview.chromium.org/766333003/diff/40001/Source/core/html/HTMLCanvasElement.cpp > File Source/core/html/HTMLCanvasElement.cpp (right): > > https://codereview.chromium.org/766333003/diff/40001/Source/core/html/HTMLCanvasElement.cpp#newcode715 > ...
6 years ago (2014-12-08 20:21:18 UTC) #5
Justin Novosad
I have no further objections with change set 3. Will let kbr have final say.
6 years ago (2014-12-08 20:26:04 UTC) #6
dshwang
On 2014/12/08 20:21:18, junov wrote: > On 2014/12/08 20:17:09, dshwang wrote: > > > https://codereview.chromium.org/766333003/diff/40001/Source/core/html/HTMLCanvasElement.cpp ...
6 years ago (2014-12-08 20:35:18 UTC) #7
aandrey
FYI https://codereview.chromium.org/766333003/diff/40001/Source/core/html/HTMLCanvasElement.cpp File Source/core/html/HTMLCanvasElement.cpp (right): https://codereview.chromium.org/766333003/diff/40001/Source/core/html/HTMLCanvasElement.cpp#newcode710 Source/core/html/HTMLCanvasElement.cpp:710: if (m_context->is2d()) Seems like this code has no ...
6 years ago (2014-12-08 20:36:46 UTC) #9
dshwang
https://codereview.chromium.org/766333003/diff/40001/Source/core/html/HTMLCanvasElement.cpp File Source/core/html/HTMLCanvasElement.cpp (right): https://codereview.chromium.org/766333003/diff/40001/Source/core/html/HTMLCanvasElement.cpp#newcode710 Source/core/html/HTMLCanvasElement.cpp:710: if (m_context->is2d()) On 2014/12/08 20:36:46, aandrey wrote: > Seems ...
6 years ago (2014-12-08 20:46:25 UTC) #10
Ken Russell (switch to Gerrit)
Thanks, this contribution LGTM overall. One comment. Please feel free to commit once addressed. https://codereview.chromium.org/766333003/diff/40001/LayoutTests/fast/canvas/canvas-createImageBitmap-webgl.html ...
6 years ago (2014-12-11 01:35:57 UTC) #11
dshwang
On 2014/12/11 01:35:57, Ken Russell wrote: > Thanks, this contribution LGTM overall. One comment. Please ...
6 years ago (2014-12-11 12:37:07 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/766333003/60001
6 years ago (2014-12-16 09:41:14 UTC) #14
commit-bot: I haz the power
6 years ago (2014-12-16 10:46:54 UTC) #15
Message was sent while issue was closed.
Committed patchset #4 (id:60001) as
https://src.chromium.org/viewvc/blink?view=rev&revision=187239

Powered by Google App Engine
This is Rietveld 408576698