Changeset 93542 in webkit


Ignore:
Timestamp:
Aug 22, 2011 2:23:23 PM (13 years ago)
Author:
nduca@chromium.org
Message:

[chromium] Make compositor context current before querying for extensions
https://bugs.webkit.org/show_bug.cgi?id=66696

Reviewed by James Robinson.

  • platform/graphics/chromium/LayerRendererChromium.cpp:

(WebCore::LayerRendererChromium::initialize):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r93540 r93542  
     12011-08-22  Nat Duca  <nduca@chromium.org>
     2
     3        [chromium] Make compositor context current before querying for extensions
     4        https://bugs.webkit.org/show_bug.cgi?id=66696
     5
     6        Reviewed by James Robinson.
     7
     8        * platform/graphics/chromium/LayerRendererChromium.cpp:
     9        (WebCore::LayerRendererChromium::initialize):
     10
    1112011-08-22  Cary Clark  <caryclark@google.com>
    212
  • trunk/Source/WebCore/platform/graphics/chromium/LayerRendererChromium.cpp

    r93523 r93542  
    480480bool LayerRendererChromium::initialize()
    481481{
     482    m_context->makeContextCurrent();
    482483#if USE(SKIA)
    483484    if (settings().acceleratePainting) {
    484         m_context->makeContextCurrent();
    485485        m_skiaContext = adoptPtr(GrContext::CreateGLShaderContext());
    486486        // Limit the number of textures we hold in the bitmap->texture cache.
Note: See TracChangeset for help on using the changeset viewer.