OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 | 5 |
6 #ifndef BitmapSkPictureCanvasLayerTextureUpdater_h | 6 #ifndef BitmapSkPictureCanvasLayerTextureUpdater_h |
7 #define BitmapSkPictureCanvasLayerTextureUpdater_h | 7 #define BitmapSkPictureCanvasLayerTextureUpdater_h |
8 | 8 |
9 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
10 #include "SkPictureCanvasLayerTextureUpdater.h" | 10 #include "SkPictureCanvasLayerTextureUpdater.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 BitmapSkPictureCanvasLayerTextureUpdater* textureUpdater() { return m_te
xtureUpdater; } | 25 BitmapSkPictureCanvasLayerTextureUpdater* textureUpdater() { return m_te
xtureUpdater; } |
26 | 26 |
27 SkBitmap m_bitmap; | 27 SkBitmap m_bitmap; |
28 BitmapSkPictureCanvasLayerTextureUpdater* m_textureUpdater; | 28 BitmapSkPictureCanvasLayerTextureUpdater* m_textureUpdater; |
29 }; | 29 }; |
30 | 30 |
31 static PassRefPtr<BitmapSkPictureCanvasLayerTextureUpdater> create(PassOwnPt
r<LayerPainterChromium>); | 31 static PassRefPtr<BitmapSkPictureCanvasLayerTextureUpdater> create(PassOwnPt
r<LayerPainterChromium>); |
32 virtual ~BitmapSkPictureCanvasLayerTextureUpdater(); | 32 virtual ~BitmapSkPictureCanvasLayerTextureUpdater(); |
33 | 33 |
34 virtual PassOwnPtr<LayerTextureUpdater::Texture> createTexture(CCPrioritized
TextureManager*) OVERRIDE; | 34 virtual PassOwnPtr<LayerTextureUpdater::Texture> createTexture(CCPrioritized
TextureManager*) OVERRIDE; |
35 virtual SampledTexelFormat sampledTexelFormat(GC3Denum textureFormat) OVERRI
DE; | 35 virtual SampledTexelFormat sampledTexelFormat(GLenum textureFormat) OVERRIDE
; |
36 void paintContentsRect(SkCanvas*, const IntRect& sourceRect, CCRenderingStat
s&); | 36 void paintContentsRect(SkCanvas*, const IntRect& sourceRect, CCRenderingStat
s&); |
37 | 37 |
38 private: | 38 private: |
39 explicit BitmapSkPictureCanvasLayerTextureUpdater(PassOwnPtr<LayerPainterChr
omium>); | 39 explicit BitmapSkPictureCanvasLayerTextureUpdater(PassOwnPtr<LayerPainterChr
omium>); |
40 }; | 40 }; |
41 } // namespace cc | 41 } // namespace cc |
42 #endif // BitmapSkPictureCanvasLayerTextureUpdater_h | 42 #endif // BitmapSkPictureCanvasLayerTextureUpdater_h |
OLD | NEW |