MCPcopy Create free account
hub / github.com/Inori/GPCS4 / createCommandList

Method createCommandList

GPCS4/Graphics/Violet/VltDevice.cpp:145–156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

143 }
144
145 Rc<VltCommandList> VltDevice::createCommandList(VltQueueType queueType)
146 {
147 Rc<VltCommandList> cmdList = queueType == VltQueueType::Graphics
148 ? m_recycledCommandListsGraphics.retrieveObject()
149 : m_recycledCommandListsCompute.retrieveObject();
150 if (cmdList == nullptr)
151 {
152 cmdList = new VltCommandList(this, queueType);
153 }
154
155 return cmdList;
156 }
157
158 Rc<VltDescriptorPool> VltDevice::createDescriptorPool()
159 {

Callers 9

GnmInitializerMethod · 0.80
downloadResourceMethod · 0.80
presentMethod · 0.80
createRenderTargetsMethod · 0.80
transitionImageLayoutMethod · 0.80
flushCommandListMethod · 0.80
clearResourcesMethod · 0.80

Calls 1

retrieveObjectMethod · 0.80

Tested by

no test coverage detected