aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/skhello.cpp
diff options
context:
space:
mode:
authorGravatar tfarina@chromium.org <tfarina@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-09-25 20:16:46 +0000
committerGravatar tfarina@chromium.org <tfarina@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-09-25 20:16:46 +0000
commite0e71afc66ee350383486c10e6c760a86663dfcc (patch)
tree4655c89a79eb98b6c97b42203388f8354912927a /tools/skhello.cpp
parentccaa002dd81a6a8bd5acb7a2fa69a2437873c1fd (diff)
Remove unused includes from skhello tool.
R=epoger@google.com Review URL: https://codereview.appspot.com/6546063 git-svn-id: http://skia.googlecode.com/svn/trunk@5676 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tools/skhello.cpp')
-rw-r--r--tools/skhello.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/tools/skhello.cpp b/tools/skhello.cpp
index 46569d5b0f..82abf80ba7 100644
--- a/tools/skhello.cpp
+++ b/tools/skhello.cpp
@@ -1,23 +1,20 @@
-
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
+
#include "SkCanvas.h"
#include "SkGraphics.h"
-//#include "SkImageDecoder.h"
#include "SkImageEncoder.h"
-//#include "SkStream.h"
#include "SkString.h"
-#include "SkTemplates.h"
static void show_help() {
SkDebugf("usage: skhello [-o out-dir] [-t 'hello']\n default output: skhello.png\n");
}
-int main (int argc, char * const argv[]) {
+int main(int argc, char* const argv[]) {
SkAutoGraphics ag;
SkString path("skhello.png");
SkString text("Hello");
@@ -71,4 +68,3 @@ int main (int argc, char * const argv[]) {
}
return !success;
}
-