aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrGpuFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/GrGpuFactory.cpp')
-rw-r--r--src/gpu/GrGpuFactory.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gpu/GrGpuFactory.cpp b/src/gpu/GrGpuFactory.cpp
index 7cfec4a900..1fc19c144a 100644
--- a/src/gpu/GrGpuFactory.cpp
+++ b/src/gpu/GrGpuFactory.cpp
@@ -12,9 +12,6 @@
#ifdef SK_VULKAN
#include "vk/GrVkGpu.h"
#endif
-#ifdef SK_METAL
-#include "mtl/GrMtlTrampoline.h"
-#endif
GrGpu* GrGpu::Create(GrBackend backend,
GrBackendContext backendContext,
@@ -27,10 +24,6 @@ GrGpu* GrGpu::Create(GrBackend backend,
case kVulkan_GrBackend:
return GrVkGpu::Create(backendContext, options, context);
#endif
-#ifdef SK_METAL
- case kMetal_GrBackend:
- return GrMtlTrampoline::CreateGpu(backendContext, options, context);
-#endif
case kMock_GrBackend:
return GrMockGpu::Create(backendContext, options, context);
default: