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