Use SK_GANESH and SK_GRAPHITE everywhere
Did mechanical find and replaces for:
- #ifdef SK_GRAPHITE_ENABLED -> #if defined(SK_GRAPHITE)
- SK_GRAPHITE_ENABLED -> SK_GRAPHITE
- SK_GANESH_ENABLED -> SK_GANESH
Change-Id: I675eccf178182bd1f016aa2cb105ff867e2f3be0
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/650116
Commit-Queue: Kevin Lubick <[email protected]>
Reviewed-by: Greg Daniel <[email protected]>
diff --git a/dm/DMGpuTestProcs.cpp b/dm/DMGpuTestProcs.cpp
index 4ccc335..bf4805b 100644
--- a/dm/DMGpuTestProcs.cpp
+++ b/dm/DMGpuTestProcs.cpp
@@ -12,7 +12,7 @@
#include "include/gpu/GrDirectContext.h"
-#ifdef SK_GRAPHITE_ENABLED
+#if defined(SK_GRAPHITE)
#include "include/gpu/graphite/Context.h"
#include "tools/graphite/ContextFactory.h"
#endif
@@ -88,7 +88,7 @@
}
}
-#ifdef SK_GRAPHITE_ENABLED
+#if defined(SK_GRAPHITE)
namespace graphite {
@@ -113,6 +113,6 @@
} // namespace graphite
-#endif // SK_GRAPHITE_ENABLED
+#endif // SK_GRAPHITE
} // namespace skiatest