Add a 'fatbits' mode to unix sample app.
git-svn-id: http://skia.googlecode.com/svn/trunk@978 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/samplecode/SampleApp.cpp b/samplecode/SampleApp.cpp
index bb55da3..b7fe051 100644
--- a/samplecode/SampleApp.cpp
+++ b/samplecode/SampleApp.cpp
@@ -825,6 +825,18 @@
this->updateTitle();
this->inval(NULL);
break;
+#ifdef SK_BUILD_FOR_UNIX
+ // These methods have not been written for other platforms yet.
+ case 'i':
+ this->zoomIn();
+ break;
+ case 'o':
+ this->zoomOut();
+ break;
+ case 'z':
+ this->toggleZoomer();
+ break;
+#endif
default:
break;
}