OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2010 Google Inc. | 3 * Copyright 2010 Google Inc. |
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 | 10 |
11 #include "SkTypes.h" | 11 #include "SkTypes.h" |
12 | 12 |
13 static const size_t kBufferSize = 2048; | 13 static const size_t kBufferSize = 2048; |
14 | 14 |
15 #include <stdarg.h> | 15 #include <stdarg.h> |
16 #include <stdio.h> | 16 #include <stdio.h> |
17 #include <windows.h> | 17 #include <windows.h> |
18 | 18 |
19 void SkDebugf(const char format[], ...) { | 19 void SkDebugf(const char format[], ...) { |
20 char buffer[kBufferSize + 1]; | 20 char buffer[kBufferSize + 1]; |
21 va_list args; | 21 va_list args; |
22 | 22 |
23 va_start(args, format); | 23 va_start(args, format); |
24 vfprintf(stderr, format, args); | 24 vfprintf(stderr, format, args); |
25 va_end(args); | 25 va_end(args); |
26 fflush(stderr); | 26 fflush(stderr); // stderr seems to be buffered on Windows. |
27 | 27 |
28 va_start(args, format); | 28 va_start(args, format); |
29 vsnprintf(buffer, kBufferSize, format, args); | 29 vsnprintf(buffer, kBufferSize, format, args); |
30 va_end(args); | 30 va_end(args); |
31 | 31 |
32 OutputDebugStringA(buffer); | 32 OutputDebugStringA(buffer); |
33 } | 33 } |
OLD | NEW |