X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=source%2Fgles2glide64%2Fsrc%2FGlideHQ%2FTxDbg.h;fp=source%2Fgles2glide64%2Fsrc%2FGlideHQ%2FTxDbg.h;h=8f366ce84beb26b851c8b1a73c721d0bc88a6700;hb=98e75f2d18c02c233da543560f76282f04fc796c;hp=0000000000000000000000000000000000000000;hpb=0ced54f867d36e8b324155bef49e8abfebfc3237;p=mupen64plus-pandora.git diff --git a/source/gles2glide64/src/GlideHQ/TxDbg.h b/source/gles2glide64/src/GlideHQ/TxDbg.h new file mode 100644 index 0000000..8f366ce --- /dev/null +++ b/source/gles2glide64/src/GlideHQ/TxDbg.h @@ -0,0 +1,61 @@ +/* + * Texture Filtering + * Version: 1.0 + * + * Copyright (C) 2007 Hiroshi Morii All Rights Reserved. + * Email koolsmoky(at)users.sourceforge.net + * Web http://www.3dfxzone.it/koolsmoky + * + * this is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * this is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GNU Make; see the file COPYING. If not, write to + * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +#ifndef __TXDBG_H__ +#define __TXDBG_H__ + +#include +#include "TxInternal.h" + +class TxDbg +{ +private: + FILE* _dbgfile; + int _level; + TxDbg(); +public: + static TxDbg* getInstance() { + static TxDbg txDbg; + return &txDbg; + } + ~TxDbg(); + void output(const int level, const wchar_t *format, ...); +}; + +#ifdef DEBUG +#define DBG_INFO(...) TxDbg::getInstance()->output(__VA_ARGS__) +#define INFO(...) DBG_INFO(__VA_ARGS__) +#else +#define DBG_INFO(...) +#ifdef GHQCHK +#define INFO(...) TxDbg::getInstance()->output(__VA_ARGS__) +#else +#if 0 /* XXX enable this to log basic hires texture checks */ +#define INFO(...) TxDbg::getInstance()->output(__VA_ARGS__) +#else +#define INFO(...) DBG_INFO(__VA_ARGS__) +#endif +#endif +#endif + +#endif /* __TXDBG_H__ */