⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 271254 in webkit


Ignore:
Timestamp:
Jan 7, 2021, 12:26:26 PM (6 years ago)
Author:
Fujii Hironori
Message:

[WinCairo] WebGL isn't shown in non-AC mode
https://bugs.webkit.org/show_bug.cgi?id=220380

Reviewed by Kenneth Russell.

If WinCairo disabled accelerated compositing, no WebGL were shown.
GraphicsContextGLOpenGL::readCompositedResults wasn't implemented
for !PLATFORM(COCOA).

  • platform/graphics/opengl/GraphicsContextGLOpenGL.cpp:

(WebCore::GraphicsContextGLOpenGL::readCompositedResults):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r271253 r271254  
     12021-01-07  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        [WinCairo] WebGL isn't shown in non-AC mode
     4        https://bugs.webkit.org/show_bug.cgi?id=220380
     5
     6        Reviewed by Kenneth Russell.
     7
     8        If WinCairo disabled accelerated compositing, no WebGL were shown.
     9        GraphicsContextGLOpenGL::readCompositedResults wasn't implemented
     10        for !PLATFORM(COCOA).
     11
     12        * platform/graphics/opengl/GraphicsContextGLOpenGL.cpp:
     13        (WebCore::GraphicsContextGLOpenGL::readCompositedResults):
     14
    1152021-01-07  Andy Estes  <aestes@apple.com>
    216
  • trunk/Source/WebCore/platform/graphics/opengl/GraphicsContextGLOpenGL.cpp

    r270964 r271254  
    237237RefPtr<ImageData> GraphicsContextGLOpenGL::readCompositedResults()
    238238{
    239     return nullptr;
     239    return readRenderingResults();
    240240}
    241241#endif
Note: See TracChangeset for help on using the changeset viewer.