Changeset 132387 in webkit


Ignore:
Timestamp:
Oct 24, 2012 1:15:55 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

BlackBerry fix for webgl-depth-texture.html
https://bugs.webkit.org/show_bug.cgi?id=100258

Patch by Jonathan Feldstein <jfeldstein@rim.com> on 2012-10-24
Reviewed by Yong Li.

Removed a platform specific define that is unnecessary.

  • platform/graphics/GraphicsContext3D.cpp:

(WebCore::GraphicsContext3D::computeFormatAndTypeParameters):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r132384 r132387  
     12012-10-24  Jonathan Feldstein  <jfeldstein@rim.com>
     2
     3        BlackBerry fix for webgl-depth-texture.html
     4        https://bugs.webkit.org/show_bug.cgi?id=100258
     5
     6        Reviewed by Yong Li.
     7
     8        Removed a platform specific define that is unnecessary.
     9
     10        * platform/graphics/GraphicsContext3D.cpp:
     11        (WebCore::GraphicsContext3D::computeFormatAndTypeParameters):
     12
    1132012-10-24  Nico Weber  <thakis@chromium.org>
    214
  • trunk/Source/WebCore/platform/graphics/GraphicsContext3D.cpp

    r125690 r132387  
    117117        *bytesPerComponent = sizeof(GC3Dushort);
    118118        break;
    119 #if !PLATFORM(BLACKBERRY)
    120119    case GraphicsContext3D::UNSIGNED_INT_24_8:
    121 #endif
    122120    case GraphicsContext3D::UNSIGNED_INT:
    123121        *bytesPerComponent = sizeof(GC3Duint);
Note: See TracChangeset for help on using the changeset viewer.