[Webkit-unassigned] [Bug 64472] WIN: NRWT runs compositing tests on configurations that don't support compositing

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Aug 10 10:45:42 PDT 2011


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





--- Comment #7 from Eric Seidel <eric at webkit.org>  2011-08-10 10:45:42 PST ---
It looks like it does not print to stderr:

    if (printSupportedFeatures) {
        BOOL acceleratedCompositingAvailable;
        standardPreferences->acceleratedCompositingEnabled(&acceleratedCompositingAvailable);

#if ENABLE(3D_RENDERING)
        // In theory, we could have a software-based 3D rendering implementation that we use when
        // hardware-acceleration is not available. But we don't have any such software
        // implementation, so 3D rendering is only available when hardware-acceleration is.
        BOOL threeDRenderingAvailable = acceleratedCompositingAvailable;
#else
        BOOL threeDRenderingAvailable = FALSE;
#endif

        printf("SupportedFeatures:%s %s\n", acceleratedCompositingAvailable ? "AcceleratedCompositing" : "", threeDRenderingAvailable ? "3DRendering" : "");
        return 0;
    }

-- 
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