diff options
author | Chris Blume <cblume@google.com> | 2018-11-05 16:10:39 -0800 |
---|---|---|
committer | Chris Blume <cblume@google.com> | 2018-11-06 11:30:47 -0800 |
commit | 5f1ac2b2176310def846972a6cbbec62646af4a0 (patch) | |
tree | 22584d70f598cb5e836607a97a386edb94680411 /libs/hwui/pipeline/skia/SkiaVulkanPipeline.cpp | |
parent | 00b0f1d3edb44f1485b92cc758543806c7a943f1 (diff) |
Rename VkFunctorDrawable->VkInteropFunctorDrawable
The Vulkan functor is currently doing interop, calling into the real
OpenGL functor. We will be adding a real, non-interop Vulkan functor
soon. In order to enable that, this patch renames the existing
VkFunctorDrawable to VkInteropFunctorDrawable. That allows us to use the
name VkFunctorDrawable for the real functor.
Test: This is a simple rename. Existing unit tests should work.
BUG=115613038
Change-Id: I427ad4d17ee92c3832e7bace55450b41a036f557
Diffstat (limited to 'libs/hwui/pipeline/skia/SkiaVulkanPipeline.cpp')
-rw-r--r-- | libs/hwui/pipeline/skia/SkiaVulkanPipeline.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/hwui/pipeline/skia/SkiaVulkanPipeline.cpp b/libs/hwui/pipeline/skia/SkiaVulkanPipeline.cpp index 2ca110f0d0b1..7fc41acefe8a 100644 --- a/libs/hwui/pipeline/skia/SkiaVulkanPipeline.cpp +++ b/libs/hwui/pipeline/skia/SkiaVulkanPipeline.cpp @@ -22,7 +22,7 @@ #include "SkiaProfileRenderer.h" #include "renderstate/RenderState.h" #include "renderthread/Frame.h" -#include "VkFunctorDrawable.h" +#include "VkInteropFunctorDrawable.h" #include <SkSurface.h> #include <SkTypes.h> @@ -144,7 +144,7 @@ bool SkiaVulkanPipeline::isContextReady() { } void SkiaVulkanPipeline::invokeFunctor(const RenderThread& thread, Functor* functor) { - VkFunctorDrawable::vkInvokeFunctor(functor); + VkInteropFunctorDrawable::vkInvokeFunctor(functor); } sk_sp<Bitmap> SkiaVulkanPipeline::allocateHardwareBitmap(renderthread::RenderThread& renderThread, |