Changeset 89827 in webkit


Ignore:
Timestamp:
Jun 27, 2011 9:57:10 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-06-27 Hyowon Kim <hw1008.kim@samsung.com>

Reviewed by Martin Robinson.

[EFL] Add some PLATFORM(EFL) ifdefs to GraphicsContext3D.h
https://bugs.webkit.org/show_bug.cgi?id=62959

Add PLATFORM(EFL) ifdefs to use GraphicsContextInternal.

  • platform/graphics/GraphicsContext3D.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r89826 r89827  
     12011-06-27  Hyowon Kim  <hw1008.kim@samsung.com>
     2
     3        Reviewed by Martin Robinson.
     4
     5        [EFL] Add some PLATFORM(EFL) ifdefs to GraphicsContext3D.h
     6        https://bugs.webkit.org/show_bug.cgi?id=62959
     7
     8        Add PLATFORM(EFL) ifdefs to use GraphicsContextInternal.
     9
     10        * platform/graphics/GraphicsContext3D.h:
     11
    1122011-06-27  Alexandru Chiculita  <achicu@adobe.com>
    213
  • trunk/Source/WebCore/platform/graphics/GraphicsContext3D.h

    r89393 r89827  
    102102
    103103// FIXME: ideally this would be used on all platforms.
    104 #if PLATFORM(CHROMIUM) || PLATFORM(QT) || PLATFORM(GTK)
     104#if PLATFORM(CHROMIUM) || PLATFORM(QT) || PLATFORM(GTK) || PLATFORM(EFL)
    105105class GraphicsContext3DInternal;
    106106#endif
     
    477477    PlatformGraphicsContext3D platformGraphicsContext3D();
    478478    Platform3DObject platformTexture() const { return m_texture; }
     479#elif PLATFORM(EFL)
     480    PlatformGraphicsContext3D platformGraphicsContext3D() const;
     481#if USE(ACCELERATED_COMPOSITING)
     482    PlatformLayer* platformLayer() const;
     483#endif
    479484#else
    480485    PlatformGraphicsContext3D platformGraphicsContext3D() const { return NullPlatformGraphicsContext3D; }
     
    933938
    934939    // FIXME: ideally this would be used on all platforms.
    935 #if PLATFORM(CHROMIUM) || PLATFORM(QT) || PLATFORM(GTK)
     940#if PLATFORM(CHROMIUM) || PLATFORM(QT) || PLATFORM(GTK) || PLATFORM(EFL)
    936941    friend class GraphicsContext3DInternal;
    937942    OwnPtr<GraphicsContext3DInternal> m_internal;
Note: See TracChangeset for help on using the changeset viewer.