OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
3 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 | 181 |
182 float opacity() const { return m_opacity; } | 182 float opacity() const { return m_opacity; } |
183 void setOpacity(float); | 183 void setOpacity(float); |
184 | 184 |
185 void setBlendMode(WebBlendMode); | 185 void setBlendMode(WebBlendMode); |
186 void setScrollBlocksOn(WebScrollBlocksOn); | 186 void setScrollBlocksOn(WebScrollBlocksOn); |
187 void setIsRootForIsolatedGroup(bool); | 187 void setIsRootForIsolatedGroup(bool); |
188 | 188 |
189 void setFilters(const FilterOperations&); | 189 void setFilters(const FilterOperations&); |
190 | 190 |
191 void setFilterLevel(SkPaint::FilterLevel); | 191 void setFilterQuality(SkFilterQuality); |
192 | 192 |
193 // Some GraphicsLayers paint only the foreground or the background content | 193 // Some GraphicsLayers paint only the foreground or the background content |
194 void setPaintingPhase(GraphicsLayerPaintingPhase); | 194 void setPaintingPhase(GraphicsLayerPaintingPhase); |
195 | 195 |
196 void setNeedsDisplay(); | 196 void setNeedsDisplay(); |
197 // Mark the given rect (in layer coords) as needing display. Never goes deep
. | 197 // Mark the given rect (in layer coords) as needing display. Never goes deep
. |
198 void setNeedsDisplayInRect(const IntRect&, PaintInvalidationReason); | 198 void setNeedsDisplayInRect(const IntRect&, PaintInvalidationReason); |
199 | 199 |
200 void setContentsNeedsDisplay(); | 200 void setContentsNeedsDisplay(); |
201 | 201 |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 }; | 370 }; |
371 | 371 |
372 } // namespace blink | 372 } // namespace blink |
373 | 373 |
374 #ifndef NDEBUG | 374 #ifndef NDEBUG |
375 // Outside the blink namespace for ease of invocation from gdb. | 375 // Outside the blink namespace for ease of invocation from gdb. |
376 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); | 376 void PLATFORM_EXPORT showGraphicsLayerTree(const blink::GraphicsLayer*); |
377 #endif | 377 #endif |
378 | 378 |
379 #endif // GraphicsLayer_h | 379 #endif // GraphicsLayer_h |
OLD | NEW |