Lines Matching refs:display
288 // * \brief Tests successfully getting a connected Drm display
305 VkDisplayKHR display = INVALID_PTR;
306 VkResult result = m_vki.getDrmDisplayEXT(m_physDevice, fd, connectorId, &display);
310 if (display == DE_NULL || display == INVALID_PTR)
311 TCU_FAIL("vkGetDrmDisplayEXT did not set display.");
335 VkDisplayKHR display = INVALID_PTR;
336 VkResult result = m_vki.getDrmDisplayEXT(m_physDevice, invalidFd, connectorId, &display);
363 VkDisplayKHR display = INVALID_PTR;
364 VkResult result = m_vki.getDrmDisplayEXT(m_physDevice, fd, invalidConnectorId, &display);
368 if (display != DE_NULL)
369 TCU_FAIL("vkGetDrmDisplayEXT did not set display to null.");
395 VkDisplayKHR display = INVALID_PTR;
396 VkResult result = m_vki.getDrmDisplayEXT(m_physDevice, fd, connectorId, &display);
400 if (display == DE_NULL || display == INVALID_PTR)
401 TCU_FAIL("vkGetDrmDisplayEXT did not set display.");
444 VkDisplayKHR display = INVALID_PTR;
445 VkResult result = m_vki.getDrmDisplayEXT(m_physDevice, leaseFd, otherConnectorId, &display);
449 if (display != DE_NULL)
450 TCU_FAIL("vkGetDrmDisplayEXT did not set display to null.");
456 // * \brief Tests successfully acquiring a connected Drm display
483 VkDisplayKHR display = INVALID_PTR;
484 VkResult result = m_vki.getDrmDisplayEXT(m_physDevice, fd, connectorId, &display);
488 if (display == DE_NULL || display == INVALID_PTR)
489 TCU_FAIL("vkGetDrmDisplayEXT did not set display.");
491 result = m_vki.acquireDrmDisplayEXT(m_physDevice, fd, display);
516 VkDisplayKHR display = INVALID_PTR;
517 VkResult result = m_vki.getDrmDisplayEXT(m_physDevice, fd, connectorId, &display);
521 if (display == DE_NULL || display == INVALID_PTR)
522 TCU_FAIL("vkGetDrmDisplayEXT did not set display.");
525 result = m_vki.acquireDrmDisplayEXT(m_physDevice, invalidFd, display);
554 VkDisplayKHR display = INVALID_PTR;
555 VkResult result = m_vki.getDrmDisplayEXT(m_physDevice, fd, connectorId, &display);
559 if (display == DE_NULL || display == INVALID_PTR)
560 TCU_FAIL("vkGetDrmDisplayEXT did not set display.");
562 result = m_vki.acquireDrmDisplayEXT(m_physDevice, fd, display);
608 VkDisplayKHR display = INVALID_PTR;
609 VkResult result = m_vki.getDrmDisplayEXT(m_physDevice, fd, otherConnectorId, &display);
613 if (display == DE_NULL || display == INVALID_PTR)
614 TCU_FAIL("vkGetDrmDisplayEXT did not set display.");
616 result = m_vki.acquireDrmDisplayEXT(m_physDevice, leaseFd, display);
624 // * \brief Tests successfully releasing an acquired Drm display
651 VkDisplayKHR display = INVALID_PTR;
652 VkResult result = m_vki.getDrmDisplayEXT(m_physDevice, fd, connectorId, &display);
656 if (display == DE_NULL || display == INVALID_PTR)
657 TCU_FAIL("vkGetDrmDisplayEXT did not set display.");
659 result = m_vki.acquireDrmDisplayEXT(m_physDevice, fd, display);
663 result = m_vki.releaseDisplayEXT(m_physDevice, display);
672 * \brief Acquire Drm display tests case class
708 // Get Drm display test
710 // Get Drm display with invalid fd test
712 // Get Drm display with invalid connector id test
714 // Get Drm display with not master test
716 // Get Drm display with unowned connector id test
718 // Acquire Drm display test
720 // Acquire Drm display with invalid fd test
722 // Acquire Drm display with not master test
724 // Acquire Drm display with unowned connector id test
728 // Release Drm display test