Lines Matching refs:GetPtrs
32 device_->GetPtrs()->vkDestroyFence(device_->GetVkDevice(), fence_, nullptr); in ~CommandBuffer()
35 device_->GetPtrs()->vkFreeCommandBuffers( in ~CommandBuffer()
47 if (device_->GetPtrs()->vkAllocateCommandBuffers( in Initialize()
54 if (device_->GetPtrs()->vkCreateFence(device_->GetVkDevice(), &fence_info, in Initialize()
66 if (device_->GetPtrs()->vkBeginCommandBuffer(command_, &command_begin_info) != in BeginRecording()
76 if (device_->GetPtrs()->vkEndCommandBuffer(command_) != VK_SUCCESS) in SubmitAndReset()
79 if (device_->GetPtrs()->vkResetFences(device_->GetVkDevice(), 1, &fence_) != in SubmitAndReset()
88 if (device_->GetPtrs()->vkQueueSubmit(device_->GetVkQueue(), 1, &submit_info, in SubmitAndReset()
95 VkResult r = device_->GetPtrs()->vkWaitForFences( in SubmitAndReset()
103 if (device_->GetPtrs()->vkResetCommandBuffer(command_, 0) != VK_SUCCESS) in SubmitAndReset()
111 device_->GetPtrs()->vkEndCommandBuffer(command_); in Reset()
112 device_->GetPtrs()->vkResetCommandBuffer(command_, 0); in Reset()