We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88f4829 commit 105d012Copy full SHA for 105d012
1 file changed
src/core/api/lifecycle.c
@@ -448,6 +448,10 @@ static VKRT_Result createPipelineBackendResources(VKRT* vkrt) {
448
if (!vkrt) return VKRT_ERROR_INVALID_ARGUMENT;
449
uint64_t stepStartTime = 0u;
450
451
+ stepStartTime = getMicroseconds();
452
+ if (createCommandPool(vkrt) != VKRT_SUCCESS) return VKRT_ERROR_OPERATION_FAILED;
453
+ logStepTime("Command pool created", stepStartTime);
454
+
455
stepStartTime = getMicroseconds();
456
if (vkrtEnsureTextureBindings(vkrt) != VKRT_SUCCESS) return VKRT_ERROR_OPERATION_FAILED;
457
logStepTime("Texture bindings ensured", stepStartTime);
0 commit comments