📄 pdump.h
字号:
/**************************************************************************
* Name : pdump.h
* Author : BCB
* Created : 02/05/2003
*
* Copyright : 2003 by Imagination Technologies Limited. All rights reserved.
* : No part of this software, either material or conceptual
* : may be copied or distributed, transmitted, transcribed,
* : stored in a retrieval system or translated into any
* : human or computer language in any form by any means,
* : electronic, mechanical, manual or other-wise, or
* : disclosed to third parties without the express written
* : permission of Imagination Technologies Limited, Unit 8, HomePark
* : Industrial Estate, King's Langley, Hertfordshire,
* : WD4 8LZ, U.K.
*
* Platform : ANSI
*
* $Date: 2004/02/25 16:26:58 $ $Revision: 1.2 $
* $Log: pdump.h $
**************************************************************************/
#ifndef _PDUMP_
#define _PDUMP_
#ifdef OLDPDUMP
#define PDUMP_WRITESLAVEPORT(gc, val) PDumpSlavePort(gc, val)
#define PDUMP_WRITETERMINATEPORT(gc, val) PDumpTerminatePort(gc, val)
#define PDUMP_WRITEREG(gc, addr, val) PDumpReg(gc, addr, val)
#define PDUMP_PRIM(gc) PDumpPrim(gc)
#define PDUMP_STRING(gc, string) PDumpString(gc, string)
#define PDUMP_TEX(gc, tex) PDumpTex(gc, tex)
#define PDUMP_INIT(gc) PDumpInit(gc)
#define PDUMP_CLOSE(gc) PDumpClose(gc)
#else
#define PDUMP_WRITESLAVEPORT(gc, val)
#define PDUMP_WRITETERMINATEPORT(gc, val)
#define PDUMP_WRITEREG(gc, addr, val)
#define PDUMP_PRIM(gc)
#define PDUMP_STRING(gc, string)
#define PDUMP_TEX(gc, tex)
#define PDUMP_INIT(gc)
#define PDUMP_CLOSE(gc)
#endif
IMG_BOOL PDumpSlavePort(GLESContext *gc, IMG_UINT32 ui32Data);
IMG_BOOL PDumpTerminatePort(GLESContext *gc, IMG_UINT32 ui32Data);
IMG_BOOL PDumpReg(GLESContext *gc, IMG_UINT32 ui32Addr, IMG_UINT32 ui32Data);
IMG_BOOL PDumpString(GLESContext *gc, IMG_CHAR *pszString);
IMG_BOOL PDumpPrim(GLESContext *gc);
IMG_BOOL PDumpTex(GLESContext *gc, GLEStexture *psTex);
IMG_BOOL PDumpInit(GLESContext *gc);
IMG_BOOL PDumpClose(GLESContext *gc);
#endif /* _PDUMP_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -