Lines Matching refs:description
36 CommandListSwapper::Description& description) in Create() argument
42 CommandListSwapper* swapper = new(memory) CommandListSwapper(allocator, description); in Create()
50 CommandListSwapper::Description& description) in CommandListSwapper() argument
52 m_CommandLists(description.commandListCount, allocator), in CommandListSwapper()
56 m_GpuProfilingEntries(description.maxGpuProfilingEntryCount, allocator), in CommandListSwapper()
57 m_GpuProfilingResults(description.maxGpuProfilingEntryCount, allocator), in CommandListSwapper()
65 m_CommandLists.resize(description.commandListCount); in CommandListSwapper()
72 nngxCmdlistStorage(description.bufferSize, description.requestCount); in CommandListSwapper()
77 if (description.reusableBufferSize > 0 && description.reusableRequestCount > 0) in CommandListSwapper()
79 m_ReusableCommandLists = CommandListArray(description.commandListCount, allocator), in CommandListSwapper()
80 m_ReusableCommandLists.resize(description.commandListCount); in CommandListSwapper()
87 nngxCmdlistStorage(description.reusableBufferSize, description.reusableRequestCount); in CommandListSwapper()
92 m_DumpCommandListBuffer = static_cast<u8*>(m_Allocator->Alloc(description.bufferSize)); in CommandListSwapper()