Changeset 117814 in webkit
- Timestamp:
- May 21, 2012, 2:01:04 PM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r117813 r117814 1 2012-05-21 Zhenyao Mo <zmo@google.com> 2 3 Restore WebGL's framebuffer binding after DrawingBuffer's prepareBackBuffer() 4 https://bugs.webkit.org/show_bug.cgi?id=87032 5 6 Reviewed by James Robinson. 7 8 * platform/graphics/chromium/DrawingBufferChromium.cpp: 9 (WebCore::DrawingBuffer::prepareBackBuffer): restore the user's framebuffer binding if there is one. 10 1 11 2012-05-21 Ryosuke Niwa <rniwa@webkit.org> 2 12 -
trunk/Source/WebCore/platform/graphics/chromium/DrawingBufferChromium.cpp
r117379 r117814 133 133 } 134 134 135 if (multisample() )135 if (multisample() && !m_framebufferBinding) 136 136 bind(); 137 else 138 restoreFramebufferBinding(); 137 139 } 138 140
Note:
See TracChangeset
for help on using the changeset viewer.