Lines Matching refs:CommandListSwapper

29 CommandListSwapper* CommandListSwapper::s_CommandListSwapper = NULL;
30 const s64 CommandListSwapper::COMMAND_LIST_WAIT_TIME_OUT = 500;
33 CommandListSwapper*
34 CommandListSwapper::Create( in Create()
36 CommandListSwapper::Description& description) in Create()
38 void* memory = allocator->Alloc(sizeof(CommandListSwapper)); in Create()
42 CommandListSwapper* swapper = new(memory) CommandListSwapper(allocator, description); in Create()
48 CommandListSwapper::CommandListSwapper( in CommandListSwapper() function in nw::demo::CommandListSwapper
50 CommandListSwapper::Description& description) in CommandListSwapper()
74 nngxSetCmdlistCallback(CommandListSwapper::CommandListCallback); in CommandListSwapper()
95 nngxSetTimeout(static_cast<s64>(timeoutTick), CommandListSwapper::TimeoutWaitCommandListDone); in CommandListSwapper()
102 CommandListSwapper::Destroy() in Destroy()
111 this->~CommandListSwapper(); in Destroy()
118 CommandListSwapper::Bind() in Bind()
124 CommandListSwapper::RunAsync() in RunAsync()
139 CommandListSwapper::Swap() in Swap()
154 CommandListSwapper::WaitDone() in WaitDone()
180 CommandListSwapper::ResetGpuProfiling() in ResetGpuProfiling()
187 CommandListSwapper::AddGpuProfilingStartPoint(bool IsInTotal) in AddGpuProfilingStartPoint()
206 CommandListSwapper::SetGpuProfilingEndPoint(u32 profilingId) in SetGpuProfilingEndPoint()
215 CommandListSwapper::RegisterCallback() in RegisterCallback()
233 CommandListSwapper::CalcGpuProfilingCostTime() in CalcGpuProfilingCostTime()
250 CommandListSwapper::GetGpuProfilingCostTime(u32 profilingId) in GetGpuProfilingCostTime()
264 CommandListSwapper::GetGpuProfilingTotalCostTime() in GetGpuProfilingTotalCostTime()
283 CommandListSwapper::SetGpuProfilingTick(GLint id) in SetGpuProfilingTick()
304 CommandListSwapper::CommandListCallback(GLint id) in CommandListCallback()
314 CommandListSwapper::StartCommandSave() in StartCommandSave()
326 CommandListSwapper::EndCommandSave() in EndCommandSave()
345 CommandListSwapper::ReuseCommand(bool isCopyBuffer) in ReuseCommand()
362 CommandListSwapper::GetCommandBufferSize() const in GetCommandBufferSize()
374 CommandListSwapper::GetReusableCommandBufferSize() const in GetReusableCommandBufferSize()
394 CommandListSwapper::TimeoutWaitCommandListDone() in TimeoutWaitCommandListDone()
404 CommandListSwapper::DumpCommandListParameter() in DumpCommandListParameter()