1
2/*
3 * Copyright 2006 The Android Open Source Project
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9
10#include "SkTypes.h"
11#include <stdio.h>
12
13static const size_t kBufferSize = 256;
14
15#define LOG_TAG "skia"
16#include <android/log.h>
17
18static bool gSkDebugToStdOut = false;
19
20extern "C" void AndroidSkDebugToStdOut(bool debugToStdOut) {
21    gSkDebugToStdOut = debugToStdOut;
22}
23
24void SkDebugf(const char format[], ...) {
25    va_list args1, args2;
26    va_start(args1, format);
27    va_copy(args2, args1);
28    __android_log_vprint(ANDROID_LOG_DEBUG, LOG_TAG, format, args1);
29
30    // Print debug output to stdout as well.  This is useful for command
31    // line applications (e.g. skia_launcher)
32    if (gSkDebugToStdOut) {
33        vprintf(format, args2);
34    }
35
36    va_end(args1);
37    va_end(args2);
38}
39