diff options
author | 2017-01-09 14:15:41 -0500 | |
---|---|---|
committer | 2017-01-10 15:05:07 -0500 | |
commit | 8cd3edfa15cc9cdbffa935d19ab894426b08d174 (patch) | |
tree | 289ec13531b91be5adf6306d8d70434bc756b2c1 /libs/hwui/OpenGLReadback.h | |
parent | d14cafc27255e0ed44665a0975a57c487b841ab1 (diff) |
Break Layer class into Gl and Vulkan subclasses
Test: manual testing
Change-Id: Ibd2beed39de3ac6da7448e96496253cfe427dfbb
Diffstat (limited to 'libs/hwui/OpenGLReadback.h')
-rw-r--r-- | libs/hwui/OpenGLReadback.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/hwui/OpenGLReadback.h b/libs/hwui/OpenGLReadback.h index f4ebabcdebe5..c9222cff51da 100644 --- a/libs/hwui/OpenGLReadback.h +++ b/libs/hwui/OpenGLReadback.h @@ -22,7 +22,7 @@ namespace android { namespace uirenderer { class Matrix4; -class Layer; +class GlLayer; class OpenGLReadback : public Readback { public: @@ -49,7 +49,7 @@ public: /** * Copies the layer's contents into the provided bitmap. */ - static bool copyLayerInto(renderthread::RenderThread& renderThread, Layer& layer, + static bool copyLayerInto(renderthread::RenderThread& renderThread, GlLayer& layer, SkBitmap* bitmap); protected: |