Lines Matching refs:description
33 CommandListSwapper::Description& description) in Create() argument
39 CommandListSwapper* swapper = new(memory) CommandListSwapper(allocator, description); in Create()
47 CommandListSwapper::Description& description) in CommandListSwapper() argument
49 m_CommandLists(description.commandListCount, allocator), in CommandListSwapper()
53 m_GpuProfilingEntries(description.maxGpuProfilingEntryCount, allocator), in CommandListSwapper()
54 m_GpuProfilingResults(description.maxGpuProfilingEntryCount, allocator), in CommandListSwapper()
61 m_CommandLists.resize(description.commandListCount); in CommandListSwapper()
68 nngxCmdlistStorage(description.bufferSize, description.requestCount); in CommandListSwapper()
73 if (description.reusableBufferSize > 0 && description.reusableRequestCount > 0) in CommandListSwapper()
75 m_ReusableCommandLists = CommandListArray(description.commandListCount, allocator), in CommandListSwapper()
76 m_ReusableCommandLists.resize(description.commandListCount); in CommandListSwapper()
83 nngxCmdlistStorage(description.reusableBufferSize, description.reusableRequestCount); in CommandListSwapper()