diff options
author | reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2008-12-19 18:24:35 +0000 |
---|---|---|
committer | reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2008-12-19 18:24:35 +0000 |
commit | 6efdc47afc8bb24603fc0d15146ada609b728f2f (patch) | |
tree | 30fb21750ba6ab3de207c29a90b522d653af2b32 /src/views | |
parent | 647254a7fd78090f64027383ff98e7ff2cc2667b (diff) |
first cut at event-based test app
git-svn-id: http://skia.googlecode.com/svn/trunk@37 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/views')
-rw-r--r-- | src/views/SkWindow.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/views/SkWindow.cpp b/src/views/SkWindow.cpp index 5d00d4fb85..ae03b811c9 100644 --- a/src/views/SkWindow.cpp +++ b/src/views/SkWindow.cpp @@ -62,8 +62,6 @@ void SkWindow::setConfig(SkBitmap::Config config) this->resize(fBitmap.width(), fBitmap.height(), config); } -#include "SkImageDecoder.h" - void SkWindow::resize(int width, int height, SkBitmap::Config config) { if (config == SkBitmap::kNo_Config) @@ -78,8 +76,6 @@ void SkWindow::resize(int width, int height, SkBitmap::Config config) this->setSize(SkIntToScalar(width), SkIntToScalar(height)); this->inval(NULL); } - - SkImageDecoder::SetDeviceConfig(fConfig); } void SkWindow::eraseARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b) |