WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
111780
Check to ensure MultisampleRenderbuffer creation succeeds
https://bugs.webkit.org/show_bug.cgi?id=111780
Summary
Check to ensure MultisampleRenderbuffer creation succeeds
Brandon Jones
Reported
2013-03-07 15:21:09 PST
Check to ensure MultisampleRenderbuffer creation succeeds
Attachments
Patch
(4.69 KB, patch)
2013-03-07 15:21 PST
,
Brandon Jones
no flags
Details
Formatted Diff
Diff
Patch
(4.66 KB, patch)
2013-03-07 15:33 PST
,
Brandon Jones
no flags
Details
Formatted Diff
Diff
Patch
(5.20 KB, patch)
2013-03-08 15:01 PST
,
Brandon Jones
no flags
Details
Formatted Diff
Diff
Patch
(5.18 KB, patch)
2013-03-08 15:08 PST
,
Brandon Jones
no flags
Details
Formatted Diff
Diff
Patch
(6.64 KB, patch)
2013-03-14 14:45 PDT
,
Brandon Jones
no flags
Details
Formatted Diff
Diff
Patch
(5.45 KB, patch)
2013-03-14 16:05 PDT
,
Brandon Jones
no flags
Details
Formatted Diff
Diff
Show Obsolete
(5)
View All
Add attachment
proposed patch, testcase, etc.
Brandon Jones
Comment 1
2013-03-07 15:21:44 PST
Created
attachment 192092
[details]
Patch
Brandon Jones
Comment 2
2013-03-07 15:24:43 PST
This will allow us to re-enable WebGL antialiasing on AMD Macs while we wait for a driver fix.
Early Warning System Bot
Comment 3
2013-03-07 15:26:48 PST
Comment on
attachment 192092
[details]
Patch
Attachment 192092
[details]
did not pass qt-wk2-ews (qt): Output:
http://webkit-commit-queue.appspot.com/results/17070270
Early Warning System Bot
Comment 4
2013-03-07 15:27:42 PST
Comment on
attachment 192092
[details]
Patch
Attachment 192092
[details]
did not pass qt-ews (qt): Output:
http://webkit-commit-queue.appspot.com/results/17024054
Brandon Jones
Comment 5
2013-03-07 15:33:27 PST
Created
attachment 192095
[details]
Patch
Early Warning System Bot
Comment 6
2013-03-07 15:39:16 PST
Comment on
attachment 192095
[details]
Patch
Attachment 192095
[details]
did not pass qt-ews (qt): Output:
http://webkit-commit-queue.appspot.com/results/17075184
Early Warning System Bot
Comment 7
2013-03-07 15:41:41 PST
Comment on
attachment 192095
[details]
Patch
Attachment 192095
[details]
did not pass qt-wk2-ews (qt): Output:
http://webkit-commit-queue.appspot.com/results/17038111
Kenneth Russell
Comment 8
2013-03-07 15:47:14 PST
Comment on
attachment 192095
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=192095&action=review
Looks pretty good overall but a few changes are needed. Also, please ensure you've tested this with multisampling re-enabled on all GPU types on OS X.
> Source/WebCore/ChangeLog:8 > + No new tests.
Why not? Please describe the issue and workaround, and why an automated test can't be written if necessary. Please also indicate what testing was done for this patch.
> Source/WebCore/platform/graphics/gpu/DrawingBuffer.cpp:193 > +// TODO(bajones): This can be removed once renderbufferStorageMultisample starts reporting GL_OUT_OF_MEMORY properly
Nit: please use periods after sentences, here and throughout the patch.
> Source/WebCore/platform/graphics/gpu/DrawingBuffer.cpp:205 > + uint32 pixel = 0;
Please use an unsigned char[4] instead of a uint32 to avoid byte ordering problems.
> Source/WebCore/platform/graphics/gpu/DrawingBuffer.cpp:310 > +#if PLATFORM(MAC)
This won't take effect for the Chromium port. For that port you need to use PLATFORM(CHROMIUM) and OS(DARWIN). Just using OS(DARWIN) may be the best way to ensure this runs on all WebKit ports on the Mac. It would be better if you could figure out a way to turn this into a run-time check that runs only on the appropriate GPUs.
Brandon Jones
Comment 9
2013-03-08 15:01:13 PST
Created
attachment 192291
[details]
Patch
Dean Jackson
Comment 10
2013-03-08 15:05:14 PST
Comment on
attachment 192291
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=192291&action=review
> Source/WebCore/platform/graphics/gpu/DrawingBuffer.cpp:193 > +// TODO(bajones): This can be removed once renderbufferStorageMultisample starts reporting GL_OUT_OF_MEMORY properly.
We don't normally use names in comments, and WebKit tends to use "FIXME:" rather than TODO.
Brandon Jones
Comment 11
2013-03-08 15:08:12 PST
Created
attachment 192292
[details]
Patch
WebKit Review Bot
Comment 12
2013-03-08 15:49:23 PST
Comment on
attachment 192292
[details]
Patch Clearing flags on attachment: 192292 Committed
r145280
: <
http://trac.webkit.org/changeset/145280
>
WebKit Review Bot
Comment 13
2013-03-08 15:49:26 PST
All reviewed patches have been landed. Closing bug.
WebKit Review Bot
Comment 14
2013-03-12 18:10:03 PDT
Re-opened since this is blocked by
bug 112217
Build Bot
Comment 15
2013-03-13 00:46:01 PDT
Comment on
attachment 192292
[details]
Patch
Attachment 192292
[details]
did not pass mac-wk2-ews (mac-wk2): Output:
http://webkit-commit-queue.appspot.com/results/17136144
New failing tests: xmlviewer/extensions-api.html
Brandon Jones
Comment 16
2013-03-14 14:45:03 PDT
Created
attachment 193187
[details]
Patch
Brandon Jones
Comment 17
2013-03-14 14:48:01 PDT
Issue breaking the tests was that glColorMask or GL_SCISSOR state could interfere with the validation check by preventing the correct color from being written. Updated patch ensures valid state before testing.
Kenneth Russell
Comment 18
2013-03-14 15:37:55 PDT
Comment on
attachment 193187
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=193187&action=review
Good catch. Couple of questions.
> Source/WebCore/ChangeLog:-6566 > -
Don't remove the old ChangeLog entry.
> Source/WebCore/platform/graphics/gpu/DrawingBuffer.cpp:202 > + m_context->colorMask(true, true, true, true);
Don't you also need to restore the user's color mask afterward?
Brandon Jones
Comment 19
2013-03-14 15:48:28 PDT
Comment on
attachment 193187
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=193187&action=review
>> Source/WebCore/ChangeLog:-6566 >> - > > Don't remove the old ChangeLog entry.
Okay, thanks. Wasn't sure what the protocol was in this case.
>> Source/WebCore/platform/graphics/gpu/DrawingBuffer.cpp:202 >> + m_context->colorMask(true, true, true, true); > > Don't you also need to restore the user's color mask afterward?
If so then we're already broken. reset() does the same thing (Line 342) without ever restoring it. Perhaps this is a bug?
Kenneth Russell
Comment 20
2013-03-14 16:01:11 PDT
Comment on
attachment 193187
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=193187&action=review
Looks fine modulo the ChangeLog entry.
>>> Source/WebCore/platform/graphics/gpu/DrawingBuffer.cpp:202 >>> + m_context->colorMask(true, true, true, true); >> >> Don't you also need to restore the user's color mask afterward? > > If so then we're already broken. reset() does the same thing (Line 342) without ever restoring it. Perhaps this is a bug?
Looking again, WebGLRenderingContext::restoreStateAfterClear resets the color mask, so this is OK.
Brandon Jones
Comment 21
2013-03-14 16:05:27 PDT
Created
attachment 193196
[details]
Patch
WebKit Review Bot
Comment 22
2013-03-14 16:08:59 PDT
Comment on
attachment 193196
[details]
Patch Rejecting
attachment 193196
[details]
from commit-queue.
bajones@chromium.org
does not have committer permissions according to
http://trac.webkit.org/browser/trunk/Tools/Scripts/webkitpy/common/config/committers.py
. - If you do not have committer rights please read
http://webkit.org/coding/contributing.html
for instructions on how to use bugzilla flags. - If you have committer rights please correct the error in Tools/Scripts/webkitpy/common/config/committers.py by adding yourself to the file (no review needed). The commit-queue restarts itself every 2 hours. After restart the commit-queue will correctly respect your committer rights.
WebKit Review Bot
Comment 23
2013-03-14 16:35:37 PDT
Comment on
attachment 193196
[details]
Patch Clearing flags on attachment: 193196 Committed
r145856
: <
http://trac.webkit.org/changeset/145856
>
WebKit Review Bot
Comment 24
2013-03-14 16:35:42 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug