31 lines
565 B
C++
31 lines
565 B
C++
/*
|
|
* Copyright 2010-2017 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, ...);
|
|
|
|
} // namespace bx
|
|
|
|
#endif // BX_DEBUG_H_HEADER_GUARD
|