Lines Matching refs:result
2642 bool result = renderPass->colorAttachmentIndex(&index);
2643 SkASSERT(result && 0 == index);
2644 result = renderPass->stencilAttachmentIndex(&index);
2645 if (result) {
2667 bool GrVkGpu::checkVkResult(VkResult result) {
2668 switch (result) {
2813 VkResult result;
2815 VK_CALL_RET(result, CreateFence(this->device(), &createInfo, nullptr, &fence));
2816 if (result != VK_SUCCESS) {
2819 VK_CALL_RET(result, QueueSubmit(this->queue(), 0, nullptr, fence));
2820 if (result != VK_SUCCESS) {
2832 VkResult result;
2833 VK_CALL_RET(result, WaitForFences(this->device(), 1, (VkFence*)&fence, VK_TRUE, 0));
2834 return (VK_SUCCESS == result);