OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright 2015 Google Inc. | |
3 * | |
4 * Use of this source code is governed by a BSD-style license that can be | |
5 * found in the LICENSE file. | |
6 */ | |
7 | |
8 #ifndef SkCodecTools_DEFINED | |
9 #define SkCodecTools_DEFINED | |
10 | |
11 inline float get_scale_from_sample_size(uint32_t sampleSize) { | |
12 return 1.0f / (float) sampleSize; | |
13 } | |
14 | |
15 #endif // SkCodecTools_DEFINED | |
OLD | NEW |