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 | 9 |
10 #include "SkTypes.h" | 10 #include "SkTypes.h" |
11 #include <stdio.h> | 11 #include <stdio.h> |
12 | 12 |
13 #define LOG_TAG "skia" | 13 #define LOG_TAG "skia" |
14 #include <android/log.h> | 14 #include <android/log.h> |
15 | 15 |
16 static bool gSkDebugToStdOut = false; | 16 static bool gSkDebugToStdOut = false; |
17 | 17 |
18 extern "C" void AndroidSkDebugToStdOut(bool debugToStdOut) { | 18 void AndroidSkDebugToStdOut(bool debugToStdOut) { |
19 gSkDebugToStdOut = debugToStdOut; | 19 gSkDebugToStdOut = debugToStdOut; |
20 } | 20 } |
21 | 21 |
22 void SkDebugf(const char format[], ...) { | 22 void SkDebugf(const char format[], ...) { |
23 va_list args1, args2; | 23 va_list args1, args2; |
24 va_start(args1, format); | 24 va_start(args1, format); |
25 va_copy(args2, args1); | 25 va_copy(args2, args1); |
26 __android_log_vprint(ANDROID_LOG_DEBUG, LOG_TAG, format, args1); | 26 __android_log_vprint(ANDROID_LOG_DEBUG, LOG_TAG, format, args1); |
27 | 27 |
28 // Print debug output to stdout as well. This is useful for command | 28 // Print debug output to stdout as well. This is useful for command |
29 // line applications (e.g. skia_launcher) | 29 // line applications (e.g. skia_launcher) |
30 if (gSkDebugToStdOut) { | 30 if (gSkDebugToStdOut) { |
31 vprintf(format, args2); | 31 vprintf(format, args2); |
32 } | 32 } |
33 | 33 |
34 va_end(args1); | 34 va_end(args1); |
35 va_end(args2); | 35 va_end(args2); |
36 } | 36 } |
OLD | NEW |