Index: dm/DM.cpp |
diff --git a/dm/DM.cpp b/dm/DM.cpp |
index f6dc398bea991e5e0ffb0debd76b02218a0041ca..210badc1b21f5bcc6d0c3756bed9e9fe32389880 100644 |
--- a/dm/DM.cpp |
+++ b/dm/DM.cpp |
@@ -1251,8 +1251,6 @@ static sk_sp<SkTypeface> create_from_name(const char familyName[], SkFontStyle s |
extern sk_sp<SkTypeface> (*gCreateTypefaceDelegate)(const char [], SkFontStyle ); |
-extern bool gDefaultProfileIsSRGB; |
- |
int dm_main(); |
int dm_main() { |
setbuf(stdout, nullptr); |
@@ -1265,10 +1263,6 @@ int dm_main() { |
gVLog = freopen(SkOSPath::Join(FLAGS_writePath[0], "verbose.log").c_str(), "w", stderr); |
} |
- if (FLAGS_forceSRGB) { |
- gDefaultProfileIsSRGB = true; |
- } |
- |
JsonWriter::DumpJson(); // It's handy for the bots to assume this is ~never missing. |
SkAutoGraphics ag; |
SkTaskGroup::Enabler enabled(FLAGS_threads); |