Changeset 125703 in webkit


Ignore:
Timestamp:
Aug 15, 2012 1:51:43 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Mark Skia and Compositor Contexts
https://bugs.webkit.org/show_bug.cgi?id=94129

Patch by Gregg Tavares <gman@google.com> on 2012-08-15
Reviewed by James Robinson.

Marks the Skia and Compositor contexts to aid in debugging.

No new tests as no new functionality.

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:

(WebCore::CCLayerTreeHostImpl::initializeLayerRenderer):

  • platform/graphics/skia/ImageBufferSkia.cpp:

(WebCore::createAcceleratedCanvas):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r125702 r125703  
     12012-08-15  Gregg Tavares  <gman@google.com>
     2
     3        Mark Skia and Compositor Contexts
     4        https://bugs.webkit.org/show_bug.cgi?id=94129
     5
     6        Reviewed by James Robinson.
     7
     8        Marks the Skia and Compositor contexts to aid in debugging.
     9
     10        No new tests as no new functionality.
     11
     12        * platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:
     13        (WebCore::CCLayerTreeHostImpl::initializeLayerRenderer):
     14        * platform/graphics/skia/ImageBufferSkia.cpp:
     15        (WebCore::createAcceleratedCanvas):
     16
    1172012-08-15  Ian Vollick  <vollick@chromium.org>
    218
  • trunk/Source/WebCore/platform/graphics/chromium/LayerRendererChromium.cpp

    r125196 r125703  
    187187
    188188    m_context->setContextLostCallback(this);
     189    m_context->pushGroupMarkerEXT("CompositorContext");
    189190
    190191    WebKit::WebString extensionsWebString = m_context->getString(GraphicsContext3D::EXTENSIONS);
  • trunk/Source/WebCore/platform/graphics/skia/ImageBufferSkia.cpp

    r122996 r125703  
    8080    if (!gr)
    8181        return 0;
     82    context3D->getExtensions()->pushGroupMarkerEXT("AcceleratedCanvasContext");
    8283    gr->resetContext();
    8384    GrTextureDesc desc;
Note: See TracChangeset for help on using the changeset viewer.