Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CC_RESOURCES_RASTER_BUFFER_H_ | |
| 6 #define CC_RESOURCES_RASTER_BUFFER_H_ | |
| 7 | |
| 8 class SkCanvas; | |
| 9 | |
| 10 namespace cc { | |
| 11 | |
| 12 class RasterBuffer { | |
| 13 public: | |
| 14 virtual SkCanvas* AcquireSkCanvas() = 0; | |
| 15 virtual void ReleaseSkCanvas() = 0; | |
|
reveman
2014/08/12 14:31:26
nit: maybe require the SkCanvas* to be passed to R
auygun
2014/08/13 14:18:53
Acknowledged.
| |
| 16 | |
| 17 protected: | |
| 18 virtual ~RasterBuffer() {} | |
| 19 }; | |
| 20 | |
| 21 } // namespace cc | |
| 22 | |
| 23 #endif // CC_RESOURCES_RASTER_BUFFER_H_ | |
| OLD | NEW |