Changeset 250898 in webkit


Ignore:
Timestamp:
Oct 9, 2019 12:22:08 AM (5 years ago)
Author:
Carlos Garcia Campos
Message:

[GTK][WPE] about:gpu should also show the client EGL extensions
https://bugs.webkit.org/show_bug.cgi?id=202690

Reviewed by Carlos Alberto Lopez Perez.

We are showing the extensions supported by the display.

  • UIProcess/API/glib/WebKitProtocolHandler.cpp:

(WebKit::WebKitProtocolHandler::handleGPU):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r250897 r250898  
     12019-10-09  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK][WPE] about:gpu should also show the client EGL extensions
     4        https://bugs.webkit.org/show_bug.cgi?id=202690
     5
     6        Reviewed by Carlos Alberto Lopez Perez.
     7
     8        We are showing the extensions supported by the display.
     9
     10        * UIProcess/API/glib/WebKitProtocolHandler.cpp:
     11        (WebKit::WebKitProtocolHandler::handleGPU):
     12
    1132019-10-09  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp

    r250896 r250898  
    453453            " <tbody><tr>"
    454454            "  <td><div class=\"titlename\">EGL_EXTENSIONS</div></td>"
    455             "  <td>%s</td>"
    456             " </tbody></tr>",
     455            "  <td>%s %s</td>"
     456            " </tbody></tr>",
     457            eglQueryString(nullptr, EGL_EXTENSIONS),
    457458            eglQueryString(eglDisplay, EGL_EXTENSIONS));
    458459    }
Note: See TracChangeset for help on using the changeset viewer.