OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2010 Google Inc. | 2 * Copyright 2010 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #import <CoreGraphics/CoreGraphics.h> | 8 #import <CoreGraphics/CoreGraphics.h> |
9 #include <CoreGraphics/CGColorSpace.h> | 9 #include <CoreGraphics/CGColorSpace.h> |
10 #import <UIKit/UIKit.h> | 10 #import <UIKit/UIKit.h> |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 ///////////////////////////////////////////////////////////////////////// | 55 ///////////////////////////////////////////////////////////////////////// |
56 | 56 |
57 SkImageDecoder* SkImageDecoder::Factory(SkStreamRewindable* stream) { | 57 SkImageDecoder* SkImageDecoder::Factory(SkStreamRewindable* stream) { |
58 return new SkImageDecoder_iOS; | 58 return new SkImageDecoder_iOS; |
59 } | 59 } |
60 | 60 |
61 SkMovie* SkMovie::DecodeStream(SkStreamRewindable* stream) { | 61 SkMovie* SkMovie::DecodeStream(SkStreamRewindable* stream) { |
62 return NULL; | 62 return NULL; |
63 } | 63 } |
64 | 64 |
65 SkImageEncoder* SkImageEncoder::Create(Type t) { | |
66 return NULL; | |
67 } | |
68 | 65 |
OLD | NEW |