| 123456789101112131415161718192021222324252627282930313233 |
- /*
- * Copyright 2010-2018 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bx#license-bsd-2-clause
- */
- #ifndef BX_DEBUG_H_HEADER_GUARD
- #define BX_DEBUG_H_HEADER_GUARD
- #include "bx.h"
- namespace bx
- {
- ///
- void debugBreak();
- ///
- void debugOutput(const char* _out);
- ///
- void debugPrintfVargs(const char* _format, va_list _argList);
- ///
- void debugPrintf(const char* _format, ...);
- ///
- void debugPrintfData(const void* _data, uint32_t _size, const char* _format, ...);
- ///
- struct WriterI* getDebugOut();
- } // namespace bx
- #endif // BX_DEBUG_H_HEADER_GUARD
|