| Summary: | [WinCairo] Crash in ATI display driver in accelerated compositing mode. | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | peavo | ||||
| Component: | WebKit Misc. | Assignee: | Nobody <webkit-unassigned> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | alex.christensen, bfulgham, commit-queue, darin | ||||
| Priority: | P2 | ||||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
|
Description
peavo
2014-10-20 07:10:06 PDT
Created attachment 240121 [details]
Patch
Comment on attachment 240121 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=240121&action=review > Source/WebKit/win/WebCoreSupport/AcceleratedCompositingContext.cpp:-106 > - static_cast<TextureMapperGL*>(m_textureMapper.get())->setEnableEdgeDistanceAntialiasing(true); Is this code used only in the WinCairo configuration or is it also used in Apple’s Windows port? Comment on attachment 240121 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=240121&action=review >> Source/WebKit/win/WebCoreSupport/AcceleratedCompositingContext.cpp:-106 >> - static_cast<TextureMapperGL*>(m_textureMapper.get())->setEnableEdgeDistanceAntialiasing(true); > > Is this code used only in the WinCairo configuration or is it also used in Apple’s Windows port? This file is only used in the WinCairo port; we don't build it on our port because we do not enable the TEXTURE_MAPPER_GL feature (we use our own compositing code). This seems like it is just covering up a bigger problem, but I'd rather have no antialiasing than frequent crashes. Is there an equivalent call in the gtk code? Comment on attachment 240121 [details] Patch Clearing flags on attachment: 240121 Committed r174919: <http://trac.webkit.org/changeset/174919> All reviewed patches have been landed. Closing bug. (In reply to comment #4) > This seems like it is just covering up a bigger problem, but I'd rather have > no antialiasing than frequent crashes. Is there an equivalent call in the > gtk code? Yes, the gtk code has the same call. |