bgfx/examples/common/entry/dbg.h

17 lines
493 B
C
Raw Normal View History

2013-02-22 09:07:31 +04:00
/*
2023-01-14 21:05:12 +03:00
* Copyright 2011-2023 Branimir Karadzic. All rights reserved.
2022-01-15 22:59:06 +03:00
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
2013-02-22 09:07:31 +04:00
*/
#ifndef DBG_H_HEADER_GUARD
#define DBG_H_HEADER_GUARD
2013-02-22 09:07:31 +04:00
2017-01-21 02:06:51 +03:00
#include <bx/debug.h>
2013-02-22 09:07:31 +04:00
#define DBG_STRINGIZE(_x) DBG_STRINGIZE_(_x)
#define DBG_STRINGIZE_(_x) #_x
#define DBG_FILE_LINE_LITERAL "" __FILE__ "(" DBG_STRINGIZE(__LINE__) "): "
2017-01-21 02:06:51 +03:00
#define DBG(_format, ...) bx::debugPrintf(DBG_FILE_LINE_LITERAL "" _format "\n", ##__VA_ARGS__)
2013-02-22 09:07:31 +04:00
#endif // DBG_H_HEADER_GUARD