Home
last modified time | relevance | path

Searched refs:primaryCommands (Results 1 – 4 of 4) sorted by relevance

/external/angle/src/libANGLE/renderer/vulkan/
DContextVk.h59 vk::PrimaryCommandBuffer primaryCommands; member
655 angle::Result flushAndGetPrimaryCommandBuffer(vk::PrimaryCommandBuffer **primaryCommands) in flushAndGetPrimaryCommandBuffer() argument
659 *primaryCommands = &mPrimaryCommands; in flushAndGetPrimaryCommandBuffer()
Dvk_helpers.cpp1175 vk::PrimaryCommandBuffer *primaryCommands; in beginQuery() local
1176 ANGLE_TRY(contextVk->flushAndGetPrimaryCommandBuffer(&primaryCommands)); in beginQuery()
1178 primaryCommands->resetQueryPool(queryPool, mQuery, 1); in beginQuery()
1179 primaryCommands->beginQuery(queryPool, mQuery, 0); in beginQuery()
1186 vk::PrimaryCommandBuffer *primaryCommands; in endQuery() local
1187 ANGLE_TRY(contextVk->flushAndGetPrimaryCommandBuffer(&primaryCommands)); in endQuery()
1188 primaryCommands->endQuery(getQueryPool(), mQuery); in endQuery()
1194 PrimaryCommandBuffer *primaryCommands, in beginOcclusionQuery() argument
1199 primaryCommands->resetQueryPool(queryPool, mQuery, 1); in beginOcclusionQuery()
DContextVk.cpp324 std::swap(primaryCommands, other.primaryCommands); in operator =()
333 primaryCommands.destroy(device); in destroy()
380 ANGLE_TRY(releasePrimaryCommandBuffer(context, std::move(batch.primaryCommands))); in checkCompletedCommands()
426 batch->primaryCommands = std::move(commandBuffer); in releaseToCommandBatch()
484 batch.primaryCommands.destroy(device); in handleDeviceLost()
Dvk_helpers.h392 PrimaryCommandBuffer *primaryCommands,