[Webkit-unassigned] [Bug 92126] New: Android-chromium layout tests failing with GPU related crash

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jul 24 09:05:22 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=92126

           Summary: Android-chromium layout tests failing with GPU related
                    crash
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Tools / Tests
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: benm at google.com
                CC: peter at chromium.org, wangxianzhu at chromium.org


It appears that the --enable-hardware-gpu flag is not being propogated into Android's DRT correctly, which means that we end up falling back to the software renderer, which leads to CHECK failures in chromium code. If I hardcode the --enable-hardware-gpu flag on in DRT with the following patch: 


--- a/Tools/DumpRenderTree/chromium/DumpRenderTree.cpp
+++ b/Tools/DumpRenderTree/chromium/DumpRenderTree.cpp
@@ -201,6 +203,7 @@ int main(int argc, char* argv[])
         return EXIT_FAILURE;
     }

+    hardwareAcceleratedGL = true;
     webkit_support::SetUpGLBindings(hardwareAcceleratedGL ? webkit_support::GL_BINDING_DEFAULT : webkit_support::GL_BINDING_SOFTWARE_RENDERER);

     if (startupDialog)


I don't see the crashes.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list