pdump.h

来自「Lido PXA270平台开发板的最新BSP,包括源代码」· C头文件 代码 · 共 58 行

H
58
字号
/**************************************************************************
 * 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 + =
减小字号Ctrl + -
显示快捷键?