Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(403)

Side by Side Diff: dm/DMGpuSupport.h

Issue 693933004: Revert of Turn on NVPR 4x MSAA by default when supported in DM and nanobench. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « dm/DMGpuGMTask.cpp ('k') | include/gpu/gl/GrGLFunctions.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #ifndef DMGpuSupport_DEFINED 1 #ifndef DMGpuSupport_DEFINED
2 #define DMGpuSupport_DEFINED 2 #define DMGpuSupport_DEFINED
3 3
4 // Provides Ganesh to DM, 4 // Provides Ganesh to DM,
5 // or if it's not available, fakes it enough so most code doesn't have to know t hat. 5 // or if it's not available, fakes it enough so most code doesn't have to know t hat.
6 6
7 #include "SkSurface.h" 7 #include "SkSurface.h"
8 8
9 #if SK_SUPPORT_GPU 9 #if SK_SUPPORT_GPU
10 10
(...skipping 18 matching lines...) Expand all
29 29
30 #else// !SK_SUPPORT_GPU 30 #else// !SK_SUPPORT_GPU
31 31
32 // Ganesh is not available. Fake it. 32 // Ganesh is not available. Fake it.
33 33
34 enum GrGLStandard { 34 enum GrGLStandard {
35 kNone_GrGLStandard, 35 kNone_GrGLStandard,
36 kGL_GrGLStandard, 36 kGL_GrGLStandard,
37 kGLES_GrGLStandard 37 kGLES_GrGLStandard
38 }; 38 };
39 static const int kGrGLStandardCnt = 3;
40 39
41 class GrContextFactory { 40 class GrContextFactory {
42 public: 41 public:
43 typedef int GLContextType; 42 typedef int GLContextType;
44 43
45 static const GLContextType kANGLE_GLContextType = 0, 44 static const GLContextType kANGLE_GLContextType = 0,
46 kDebug_GLContextType = 0, 45 kDebug_GLContextType = 0,
47 kMESA_GLContextType = 0, 46 kMESA_GLContextType = 0,
48 kNVPR_GLContextType = 0, 47 kNVPR_GLContextType = 0,
49 kNative_GLContextType = 0, 48 kNative_GLContextType = 0,
50 kNull_GLContextType = 0; 49 kNull_GLContextType = 0;
51 static const int kGLContextTypeCnt = 1;
52 void destroyContexts() {} 50 void destroyContexts() {}
53 51
54 void abandonContexts() {} 52 void abandonContexts() {}
55 }; 53 };
56 54
57 namespace DM { 55 namespace DM {
58 56
59 static const bool kGPUDisabled = true; 57 static const bool kGPUDisabled = true;
60 58
61 static inline SkSurface* NewGpuSurface(GrContextFactory*, 59 static inline SkSurface* NewGpuSurface(GrContextFactory*,
62 GrContextFactory::GLContextType, 60 GrContextFactory::GLContextType,
63 GrGLStandard, 61 GrGLStandard,
64 SkImageInfo, 62 SkImageInfo,
65 int) { 63 int) {
66 return NULL; 64 return NULL;
67 } 65 }
68 66
69 } // namespace DM 67 } // namespace DM
70 68
71 #endif//SK_SUPPORT_GPU 69 #endif//SK_SUPPORT_GPU
72 70
73 #endif//DMGpuSupport_DEFINED 71 #endif//DMGpuSupport_DEFINED
OLDNEW
« no previous file with comments | « dm/DMGpuGMTask.cpp ('k') | include/gpu/gl/GrGLFunctions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698