commit-bot@chromium.org | 787227d | 2014-03-26 21:26:15 +0000 | [diff] [blame] | 1 | #ifndef DMGpuSupport_DEFINED |
| 2 | #define DMGpuSupport_DEFINED |
| 3 | |
| 4 | // Provides Ganesh to DM, |
| 5 | // or if it's not available, fakes it enough so most code doesn't have to know that. |
| 6 | |
| 7 | #include "SkSurface.h" |
| 8 | |
| 9 | #if SK_SUPPORT_GPU |
| 10 | |
| 11 | // Ganesh is available. Yippee! |
| 12 | |
| 13 | # include "GrContext.h" |
| 14 | # include "GrContextFactory.h" |
| 15 | |
| 16 | namespace DM { |
| 17 | |
| 18 | static const bool kGPUDisabled = false; |
| 19 | |
| 20 | static inline SkSurface* NewGpuSurface(GrContextFactory* grFactory, |
| 21 | GrContextFactory::GLContextType type, |
kkinnunen | 80549fc | 2014-06-30 06:36:31 -0700 | [diff] [blame] | 22 | GrGLStandard gpuAPI, |
commit-bot@chromium.org | 787227d | 2014-03-26 21:26:15 +0000 | [diff] [blame] | 23 | SkImageInfo info, |
| 24 | int samples) { |
kkinnunen | 80549fc | 2014-06-30 06:36:31 -0700 | [diff] [blame] | 25 | return SkSurface::NewRenderTarget(grFactory->get(type, gpuAPI), info, samples); |
commit-bot@chromium.org | 787227d | 2014-03-26 21:26:15 +0000 | [diff] [blame] | 26 | } |
| 27 | |
| 28 | } // namespace DM |
| 29 | |
| 30 | #else// !SK_SUPPORT_GPU |
| 31 | |
| 32 | // Ganesh is not available. Fake it. |
| 33 | |
kkinnunen | 80549fc | 2014-06-30 06:36:31 -0700 | [diff] [blame] | 34 | enum GrGLStandard { |
| 35 | kNone_GrGLStandard, |
| 36 | kGL_GrGLStandard, |
| 37 | kGLES_GrGLStandard |
| 38 | }; |
| 39 | |
commit-bot@chromium.org | 787227d | 2014-03-26 21:26:15 +0000 | [diff] [blame] | 40 | class GrContextFactory { |
| 41 | public: |
| 42 | typedef int GLContextType; |
| 43 | |
| 44 | static const GLContextType kANGLE_GLContextType = 0, |
| 45 | kDebug_GLContextType = 0, |
| 46 | kMESA_GLContextType = 0, |
| 47 | kNVPR_GLContextType = 0, |
| 48 | kNative_GLContextType = 0, |
| 49 | kNull_GLContextType = 0; |
mtklein | 1e319f7 | 2014-07-15 08:27:06 -0700 | [diff] [blame] | 50 | void destroyContexts() {} |
bsalomon | 2354f84 | 2014-07-28 13:48:36 -0700 | [diff] [blame] | 51 | |
| 52 | void abandonContexts() {} |
commit-bot@chromium.org | 787227d | 2014-03-26 21:26:15 +0000 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | namespace DM { |
| 56 | |
| 57 | static const bool kGPUDisabled = true; |
| 58 | |
| 59 | static inline SkSurface* NewGpuSurface(GrContextFactory*, |
| 60 | GrContextFactory::GLContextType, |
kkinnunen | 80549fc | 2014-06-30 06:36:31 -0700 | [diff] [blame] | 61 | GrGLStandard, |
commit-bot@chromium.org | 787227d | 2014-03-26 21:26:15 +0000 | [diff] [blame] | 62 | SkImageInfo, |
| 63 | int) { |
| 64 | return NULL; |
| 65 | } |
| 66 | |
| 67 | } // namespace DM |
| 68 | |
| 69 | #endif//SK_SUPPORT_GPU |
| 70 | |
| 71 | #endif//DMGpuSupport_DEFINED |