Index: src/ports/SkDebug_brew.cpp |
=================================================================== |
--- src/ports/SkDebug_brew.cpp (revision 9384) |
+++ src/ports/SkDebug_brew.cpp (working copy) |
@@ -1,28 +0,0 @@ |
-/* libs/corecg/SkDebug_brew.cpp |
- * |
- * Copyright 2009, The Android Open Source Project |
- * Copyright 2009, Company 100, Inc. |
- * |
- * Use of this source code is governed by a BSD-style license that can be |
- * found in the LICENSE file. |
- */ |
- |
-#include "SkTypes.h" |
- |
-#ifdef SK_BUILD_FOR_BREW |
- |
-static const size_t kBufferSize = 256; |
- |
-#include <AEEStdLib.h> |
-#include <stdarg.h> |
- |
-void SkDebugf(const char format[], ...) { |
- char buffer[kBufferSize + 1]; |
- va_list args; |
- va_start(args, format); |
- VSNPRINTF(buffer, kBufferSize, format, args); |
- va_end(args); |
- DBGPRINTF(buffer); |
-} |
- |
-#endif SK_BUILD_FOR_BREW |