Changeset 44702 in webkit for trunk/JavaScriptCore/wtf


Ignore:
Timestamp:
Jun 15, 2009, 6:27:57 PM (16 years ago)
Author:
Simon Fraser
Message:

2009-06-15 Simon Fraser <Simon Fraser>

Reviewed by Mark Rowe.

<rdar://problem/6974857>

Define ENABLE_3D_RENDERING and WTF_USE_ACCELERATED_COMPOSITING when building on 10.6.
Move the ENABLE_3D_RENDERING switch from config.h and WebKitPrefix.h to wtf/Platform.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/Platform.h

    r44528 r44702  
    609609#endif
    610610
     611/* Accelerated compositing */
     612#if PLATFORM(MAC)
     613#if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD)
     614#define WTF_USE_ACCELERATED_COMPOSITING 1
     615#endif
     616#endif
     617
     618#if PLATFORM(IPHONE)
     619#define WTF_USE_ACCELERATED_COMPOSITING 1
     620#endif
     621
    611622#endif /* WTF_Platform_h */
Note: See TracChangeset for help on using the changeset viewer.