| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #include "GrGpuFactory.h" | 10 #include "GrGpuFactory.h" |
| 11 | 11 |
| 12 #include "GrGpu.h" | 12 #include "GrGpu.h" |
| 13 #include "gl/GrGLConfig.h" | 13 #include "gl/GrGLConfig.h" |
| 14 #include "gl/GrGLGpu.h" | 14 #include "gl/GrGLGpu.h" |
| 15 | 15 |
| 16 static const int kMaxNumBackends = 4; | 16 static CreateGpuProc gGpuFactories[kBackendCount] = { GrGLGpu::Create, NULL }; |
| 17 static CreateGpuProc gGpuFactories[kMaxNumBackends] = {GrGLGpu::Create, NULL, NU
LL, NULL}; | 17 |
| 18 #ifdef SK_VULKAN |
| 19 extern GrGpu* vk_gpu_create(GrBackendContext backendContext, const GrContextOpti
ons& options, |
| 20 GrContext* context); |
| 21 GrGpuFactoryRegistrar gVkGpuFactoryProc(kVulkan_GrBackend, vk_gpu_create); |
| 22 #endif |
| 18 | 23 |
| 19 GrGpuFactoryRegistrar::GrGpuFactoryRegistrar(int i, CreateGpuProc proc) { | 24 GrGpuFactoryRegistrar::GrGpuFactoryRegistrar(int i, CreateGpuProc proc) { |
| 20 gGpuFactories[i] = proc; | 25 gGpuFactories[i] = proc; |
| 21 } | 26 } |
| 22 | 27 |
| 23 GrGpu* GrGpu::Create(GrBackend backend, | 28 GrGpu* GrGpu::Create(GrBackend backend, |
| 24 GrBackendContext backendContext, | 29 GrBackendContext backendContext, |
| 25 const GrContextOptions& options, | 30 const GrContextOptions& options, |
| 26 GrContext* context) { | 31 GrContext* context) { |
| 27 SkASSERT((int)backend < kMaxNumBackends); | 32 SkASSERT((int)backend < kBackendCount); |
| 28 if (!gGpuFactories[backend]) { | 33 if (!gGpuFactories[backend]) { |
| 29 return NULL; | 34 return NULL; |
| 30 } | 35 } |
| 31 return (gGpuFactories[backend])(backendContext, options, context); | 36 return (gGpuFactories[backend])(backendContext, options, context); |
| 32 } | 37 } |
| OLD | NEW |