PuzzleSDK
NewAudioEngineTest.cpp 文件参考
#include "platform/CCPlatformConfig.h"
#include "NewAudioEngineTest.h"
#include "ui/CocosGUI.h"
+ NewAudioEngineTest.cpp 的引用(Include)关系图:

浏览源代码.

宏定义

#define CC_PROFILER_DISPLAY_TIMERS()   Profiler::getInstance()->displayTimers()
 
#define CC_PROFILER_PURGE_ALL()   Profiler::getInstance()->releaseAllTimers()
 
#define CC_PROFILER_START(__name__)   ProfilingBeginTimingBlock(__name__)
 
#define CC_PROFILER_STOP(__name__)   ProfilingEndTimingBlock(__name__)
 
#define CC_PROFILER_RESET(__name__)   ProfilingResetTimingBlock(__name__)
 
#define CC_PROFILER_START_CATEGORY(__cat__, __name__)   do{ if(__cat__) ProfilingBeginTimingBlock(__name__); } while(0)
 
#define CC_PROFILER_STOP_CATEGORY(__cat__, __name__)   do{ if(__cat__) ProfilingEndTimingBlock(__name__); } while(0)
 
#define CC_PROFILER_RESET_CATEGORY(__cat__, __name__)   do{ if(__cat__) ProfilingResetTimingBlock(__name__); } while(0)
 
#define CC_PROFILER_START_INSTANCE(__id__, __name__)   do{ ProfilingBeginTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0)
 
#define CC_PROFILER_STOP_INSTANCE(__id__, __name__)   do{ ProfilingEndTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0)
 
#define CC_PROFILER_RESET_INSTANCE(__id__, __name__)   do{ ProfilingResetTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0)
 

宏定义说明

◆ CC_PROFILER_DISPLAY_TIMERS

#define CC_PROFILER_DISPLAY_TIMERS ( )    Profiler::getInstance()->displayTimers()

在文件 NewAudioEngineTest.cpp751 行定义.

◆ CC_PROFILER_PURGE_ALL

#define CC_PROFILER_PURGE_ALL ( )    Profiler::getInstance()->releaseAllTimers()

在文件 NewAudioEngineTest.cpp753 行定义.

◆ CC_PROFILER_RESET

#define CC_PROFILER_RESET (   __name__)    ProfilingResetTimingBlock(__name__)

在文件 NewAudioEngineTest.cpp760 行定义.

◆ CC_PROFILER_RESET_CATEGORY

#define CC_PROFILER_RESET_CATEGORY (   __cat__,
  __name__ 
)    do{ if(__cat__) ProfilingResetTimingBlock(__name__); } while(0)

在文件 NewAudioEngineTest.cpp767 行定义.

◆ CC_PROFILER_RESET_INSTANCE

#define CC_PROFILER_RESET_INSTANCE (   __id__,
  __name__ 
)    do{ ProfilingResetTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0)

在文件 NewAudioEngineTest.cpp774 行定义.

◆ CC_PROFILER_START

#define CC_PROFILER_START (   __name__)    ProfilingBeginTimingBlock(__name__)

在文件 NewAudioEngineTest.cpp756 行定义.

◆ CC_PROFILER_START_CATEGORY

#define CC_PROFILER_START_CATEGORY (   __cat__,
  __name__ 
)    do{ if(__cat__) ProfilingBeginTimingBlock(__name__); } while(0)

在文件 NewAudioEngineTest.cpp763 行定义.

◆ CC_PROFILER_START_INSTANCE

#define CC_PROFILER_START_INSTANCE (   __id__,
  __name__ 
)    do{ ProfilingBeginTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0)

在文件 NewAudioEngineTest.cpp770 行定义.

◆ CC_PROFILER_STOP

#define CC_PROFILER_STOP (   __name__)    ProfilingEndTimingBlock(__name__)

在文件 NewAudioEngineTest.cpp758 行定义.

◆ CC_PROFILER_STOP_CATEGORY

#define CC_PROFILER_STOP_CATEGORY (   __cat__,
  __name__ 
)    do{ if(__cat__) ProfilingEndTimingBlock(__name__); } while(0)

在文件 NewAudioEngineTest.cpp765 行定义.

◆ CC_PROFILER_STOP_INSTANCE

#define CC_PROFILER_STOP_INSTANCE (   __id__,
  __name__ 
)    do{ ProfilingEndTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0)

在文件 NewAudioEngineTest.cpp772 行定义.