diff options
author | djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-08-07 19:49:41 +0000 |
---|---|---|
committer | djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-08-07 19:49:41 +0000 |
commit | 21830d90096d2dccc4168d99a427e78035ce942a (patch) | |
tree | 4dd555cade377ea06a9f4f826755ff6384b71699 /gyp | |
parent | 44b67b2ed16ecb6fe001b785498e20b13fa42d0c (diff) |
Refactor Bitmap Storage for SkPicture using SkPipe's design.
Refactor Picture and Pipe bitmap storage into common data structure
Update SkFlattenable buffers to be more modular.
This CL is an effort to stage the conversion to named
parameters for all SkFlattenable commands. This particular
stage only does the following two things...
1. Move flattenable buffers from SkFlattenable.h into
their own header.
2. Update and Add new read write methods for better clarity
and convenience.
BUG=
Review URL: https://codereview.appspot.com/6445079
git-svn-id: http://skia.googlecode.com/svn/trunk@4994 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gyp')
-rw-r--r-- | gyp/core.gyp | 2 | ||||
-rw-r--r-- | gyp/effects.gyp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/gyp/core.gyp b/gyp/core.gyp index 6af2a57e4e..49b2b85bd7 100644 --- a/gyp/core.gyp +++ b/gyp/core.gyp @@ -14,6 +14,8 @@ '../src/core/SkAlphaRuns.cpp', '../src/core/SkAntiRun.h', '../src/core/SkBitmap.cpp', + '../src/core/SkBitmapHeap.cpp', + '../src/core/SkBitmapHeap.h', '../src/core/SkBitmapProcShader.cpp', '../src/core/SkBitmapProcShader.h', '../src/core/SkBitmapProcState.cpp', diff --git a/gyp/effects.gyp b/gyp/effects.gyp index 0a9e8d7d57..86308b767e 100644 --- a/gyp/effects.gyp +++ b/gyp/effects.gyp @@ -5,6 +5,7 @@ 'type': 'static_library', 'include_dirs': [ '../include/effects', + '../src/core', ], 'sources': [ '../include/effects/Sk1DPathEffect.h', |