MCPcopy Create free account
hub / github.com/KomputeProject/kompute / recordBindCore

Method recordBindCore

src/Algorithm.cpp:323–339  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

321}
322
323void
324Algorithm::recordBindCore(const vk::CommandBuffer& commandBuffer)
325{
326 KP_LOG_DEBUG("Kompute Algorithm binding pipeline");
327
328 commandBuffer.bindPipeline(vk::PipelineBindPoint::eCompute,
329 *this->mPipeline);
330
331 KP_LOG_DEBUG("Kompute Algorithm binding descriptor sets");
332
333 commandBuffer.bindDescriptorSets(vk::PipelineBindPoint::eCompute,
334 *this->mPipelineLayout,
335 0, // First set
336 *this->mDescriptorSet,
337 nullptr // Dispatcher
338 );
339}
340
341void
342Algorithm::recordBindPush(const vk::CommandBuffer& commandBuffer)

Callers 1

recordMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected