| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 #include "core/platform/graphics/GraphicsLayer.h" | 28 #include "core/platform/graphics/GraphicsLayer.h" |
| 29 | 29 |
| 30 #include "SkImageFilter.h" | 30 #include "SkImageFilter.h" |
| 31 #include "SkMatrix44.h" | 31 #include "SkMatrix44.h" |
| 32 #include "core/platform/ScrollableArea.h" | 32 #include "core/platform/ScrollableArea.h" |
| 33 #include "core/platform/graphics/GraphicsContext.h" | 33 #include "core/platform/graphics/GraphicsContext.h" |
| 34 #include "core/platform/graphics/GraphicsLayerFactory.h" | 34 #include "core/platform/graphics/GraphicsLayerFactory.h" |
| 35 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" | 35 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" |
| 36 #include "core/platform/graphics/skia/NativeImageSkia.h" | 36 #include "core/platform/graphics/skia/NativeImageSkia.h" |
| 37 #include "platform/geometry/FloatPoint.h" | |
| 38 #include "platform/geometry/FloatRect.h" | 37 #include "platform/geometry/FloatRect.h" |
| 39 #include "platform/geometry/LayoutRect.h" | 38 #include "platform/geometry/LayoutRect.h" |
| 40 #include "platform/text/TextStream.h" | 39 #include "platform/text/TextStream.h" |
| 41 #include "platform/transforms/TransformationMatrix.h" | |
| 42 #include "wtf/CurrentTime.h" | 40 #include "wtf/CurrentTime.h" |
| 43 #include "wtf/HashMap.h" | 41 #include "wtf/HashMap.h" |
| 44 #include "wtf/HashSet.h" | 42 #include "wtf/HashSet.h" |
| 45 #include "wtf/text/WTFString.h" | 43 #include "wtf/text/WTFString.h" |
| 46 | 44 |
| 47 #include "public/platform/Platform.h" | 45 #include "public/platform/Platform.h" |
| 48 #include "public/platform/WebAnimation.h" | 46 #include "public/platform/WebAnimation.h" |
| 49 #include "public/platform/WebCompositorSupport.h" | 47 #include "public/platform/WebCompositorSupport.h" |
| 50 #include "public/platform/WebFilterOperations.h" | 48 #include "public/platform/WebFilterOperations.h" |
| 51 #include "public/platform/WebFloatPoint.h" | 49 #include "public/platform/WebFloatPoint.h" |
| (...skipping 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1205 #ifndef NDEBUG | 1203 #ifndef NDEBUG |
| 1206 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer) | 1204 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer) |
| 1207 { | 1205 { |
| 1208 if (!layer) | 1206 if (!layer) |
| 1209 return; | 1207 return; |
| 1210 | 1208 |
| 1211 String output = layer->layerTreeAsText(WebCore::LayerTreeIncludesDebugInfo); | 1209 String output = layer->layerTreeAsText(WebCore::LayerTreeIncludesDebugInfo); |
| 1212 fprintf(stderr, "%s\n", output.utf8().data()); | 1210 fprintf(stderr, "%s\n", output.utf8().data()); |
| 1213 } | 1211 } |
| 1214 #endif | 1212 #endif |
| OLD | NEW |