Chromium Code Reviews| Index: platform_tools/android/apps/canvasproof/src/main/jni/Debugf.h |
| diff --git a/platform_tools/android/apps/canvasproof/src/main/jni/Debugf.h b/platform_tools/android/apps/canvasproof/src/main/jni/Debugf.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..7e1ef3ac40fa0c44760301fdde7c2c6b07c01301 |
| --- /dev/null |
| +++ b/platform_tools/android/apps/canvasproof/src/main/jni/Debugf.h |
| @@ -0,0 +1,14 @@ |
| +/* |
| + * Copyright 2015 Google Inc. |
| + * |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. |
| + */ |
| +#ifndef Debugf_DEFINED |
| +#define Debugf_DEFINED |
| + |
| +#include <android/log.h> |
| +#define Debugf(DTAG, ...) \ |
| + __android_log_print(ANDROID_LOG_VERBOSE, DTAG, __VA_ARGS__) |
|
djsollen
2015/08/24 12:42:56
why is SkDebugf not good enough?
hal.canary
2015/08/31 21:16:56
Done.
|
| + |
| +#endif // Debugf_DEFINED |