diff options
author | robertphillips <robertphillips@google.com> | 2015-05-26 11:38:03 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-05-26 11:38:03 -0700 |
commit | ea4615034498aca2f9ca1753fb9a1ef10508d8cc (patch) | |
tree | 22f0027849de0dd18b199fb13c6c28be812cf229 /gyp | |
parent | 884e97cb04db7ed053a866567ee9c6e4c01f993a (diff) |
Split drawing functionality out of GrContext and into new GrDrawContext
This is mainly a mechanical CL. There were some fiddly bits in GrContext.cpp where it no longer had access to the GrDrawTarget (and had to use the new GrDrawContext).
I've converted GrAARectRenderer & GrOvalRenderer into static classes so I could stop allocating them.
Review URL: https://codereview.chromium.org/1151283004
Diffstat (limited to 'gyp')
-rw-r--r-- | gyp/gpu.gypi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gyp/gpu.gypi b/gyp/gpu.gypi index 01f70f119a..15f6647d46 100644 --- a/gyp/gpu.gypi +++ b/gyp/gpu.gypi @@ -19,6 +19,7 @@ '<(skia_include_path)/gpu/GrContextOptions.h', '<(skia_include_path)/gpu/GrContext.h', '<(skia_include_path)/gpu/GrCoordTransform.h', + '<(skia_include_path)/gpu/GrDrawContext.h', '<(skia_include_path)/gpu/GrFragmentProcessor.h', '<(skia_include_path)/gpu/GrFragmentStage.h', '<(skia_include_path)/gpu/GrGpuResource.h', @@ -99,6 +100,7 @@ '<(skia_src_path)/gpu/GrDefaultGeoProcFactory.h', '<(skia_src_path)/gpu/GrDefaultPathRenderer.cpp', '<(skia_src_path)/gpu/GrDefaultPathRenderer.h', + '<(skia_src_path)/gpu/GrDrawContext.cpp', '<(skia_src_path)/gpu/GrDrawTarget.cpp', '<(skia_src_path)/gpu/GrDrawTarget.h', '<(skia_src_path)/gpu/GrFontAtlasSizes.h', |