aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/fonts/create_test_font_color.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/fonts/create_test_font_color.cpp')
-rw-r--r--tools/fonts/create_test_font_color.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/tools/fonts/create_test_font_color.cpp b/tools/fonts/create_test_font_color.cpp
deleted file mode 100644
index c3f2e08f3f..0000000000
--- a/tools/fonts/create_test_font_color.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright 2014 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-// running create_test_font_color generates ./<cbdt|sbix|cpal>.ttx
-// which are read by fonttools ttx to produce native fonts.
-
-#include "SkCommandLineFlags.h"
-#include "SkRefCnt.h"
-#include "SkStream.h"
-#include "SkTestSVGTypeface.h"
-
-int main(int argc, char** argv) {
- SkCommandLineFlags::Parse(argc, argv);
-
- sk_sp<SkTestSVGTypeface> typeface = SkTestSVGTypeface::Default();
-
- SkFILEWStream cbdt("cbdt.ttx");
- typeface->exportTtxCbdt(&cbdt);
- cbdt.flush();
- cbdt.fsync();
-
- SkFILEWStream sbix("sbix.ttx");
- typeface->exportTtxSbix(&sbix);
- sbix.flush();
- sbix.fsync();
-
- SkFILEWStream colr("colr.ttx");
- typeface->exportTtxColr(&colr);
- colr.flush();
- colr.fsync();
-
- return 0;
-}