Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Side by Side Diff: skia/images/SkBitmap_RLEPixels.h

Issue 113827: Remove the remainder of the skia source code from the Chromium repo.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « skia/gl/SkTextureCache.cpp ('k') | skia/images/SkCreateRLEPixelRef.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef SkBitmap_RLEPixels_DEFINED
2 #define SkBitmap_RLEPixels_DEFINED
3
4 #include "SkChunkAlloc.h"
5
6 class SkBitmap_RLEPixels {
7 public:
8 SkBitmap_RLEPixels(int width, int height);
9 ~SkBitmap_RLEPixels();
10
11 uint8_t* yptrs() const { return fYPtrs; }
12 uint8_t* allocChunk(size_t chunk);
13
14 private:
15 SkChunkAlloc fChunk;
16 uint8_t** fYPtrs;
17 };
18
19 #endif
OLDNEW
« no previous file with comments | « skia/gl/SkTextureCache.cpp ('k') | skia/images/SkCreateRLEPixelRef.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698