Changeset 260754 in webkit


Ignore:
Timestamp:
Apr 27, 2020 8:27:30 AM (4 years ago)
Author:
commit-queue@webkit.org
Message:

[WPE] about:gpu page is incomplete
https://bugs.webkit.org/show_bug.cgi?id=211076

Patch by Philippe Normand <pnormand@igalia.com> on 2020-04-27
Reviewed by Adrian Perez de Castro.

ENABLE(OPENGL) was renamed to ENABLE(GRAPHICS_CONTEXT_GL) in
r254064 but not in all the code base...

  • UIProcess/API/glib/WebKitProtocolHandler.cpp:

(WebKit::WebKitProtocolHandler::handleGPU):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r260753 r260754  
     12020-04-27  Philippe Normand  <pnormand@igalia.com>
     2
     3        [WPE] about:gpu page is incomplete
     4        https://bugs.webkit.org/show_bug.cgi?id=211076
     5
     6        Reviewed by Adrian Perez de Castro.
     7
     8        ENABLE(OPENGL) was renamed to ENABLE(GRAPHICS_CONTEXT_GL) in
     9        r254064 but not in all the code base...
     10
     11        * UIProcess/API/glib/WebKitProtocolHandler.cpp:
     12        (WebKit::WebKitProtocolHandler::handleGPU):
     13
    1142020-04-26  Darin Adler  <darin@apple.com>
    215
  • trunk/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp

    r258103 r260754  
    347347        hardwareAccelerationPolicy(request));
    348348
    349 #if ENABLE(OPENGL)
     349#if ENABLE(GRAPHICS_CONTEXT_GL)
    350350    g_string_append_printf(html,
    351351        " <tbody><tr>"
     
    481481    }
    482482#endif
    483 #endif // ENABLE(OPENGL)
     483#endif // ENABLE(GRAPHICS_CONTEXT_GL)
    484484
    485485    g_string_append(html, "<table>");
Note: See TracChangeset for help on using the changeset viewer.