OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2006 The Android Open Source Project | 3 * Copyright 2006 The Android Open Source Project |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
10 #include "SkImage.h" | 10 #include "SkImage.h" |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 } | 140 } |
141 | 141 |
142 SkData* SkImageEncoder::encodeData(const SkBitmap&, int) { | 142 SkData* SkImageEncoder::encodeData(const SkBitmap&, int) { |
143 return NULL; | 143 return NULL; |
144 } | 144 } |
145 | 145 |
146 bool SkImageEncoder::encodeFile(const char file[], const SkBitmap& bm, int quali
ty) { | 146 bool SkImageEncoder::encodeFile(const char file[], const SkBitmap& bm, int quali
ty) { |
147 return false; | 147 return false; |
148 } | 148 } |
149 ///////////////////////////////////////////////////////////////////////// | 149 ///////////////////////////////////////////////////////////////////////// |
150 | |
151 // Empty implementation for SkImages. | |
152 | |
153 #include "SkImages.h" | |
154 | |
155 void SkImages::InitializeFlattenables() {} | |
OLD | NEW |