OLD | NEW |
1 | |
2 /* | 1 /* |
3 * Copyright 2010 The Android Open Source Project | 2 * Copyright 2010 The Android Open Source Project |
4 * | 3 * |
5 * 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 |
6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
7 */ | 6 */ |
8 | 7 |
9 | 8 |
10 #ifndef SkJpegUtility_DEFINED | 9 #ifndef SkJpegUtility_DEFINED |
11 #define SkJpegUtility_DEFINED | 10 #define SkJpegUtility_DEFINED |
(...skipping 26 matching lines...) Expand all Loading... |
38 | 37 |
39 SkWStream* fStream; | 38 SkWStream* fStream; |
40 | 39 |
41 enum { | 40 enum { |
42 kBufferSize = 1024 | 41 kBufferSize = 1024 |
43 }; | 42 }; |
44 uint8_t fBuffer[kBufferSize]; | 43 uint8_t fBuffer[kBufferSize]; |
45 }; | 44 }; |
46 | 45 |
47 #endif | 46 #endif |
OLD | NEW |