Home
last modified time | relevance | path

Searched refs:rectangleCount (Results 1 – 16 of 16) sorted by relevance

/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/VK_KHR_incremental_present/
Dwsi.adoc53 * pname:rectangleCount is the number of rectangles in pname:pRectangles,
/hardware/google/gfxstream/guest/mesa/src/vulkan/wsi/
Dwsi_common_x11.c1860 if (damage && damage->pRectangles && damage->rectangleCount > 0 && in x11_queue_present()
1861 damage->rectangleCount <= MAX_DAMAGE_RECTS) { in x11_queue_present()
1865 for (unsigned i = 0; i < damage->rectangleCount; i++) { in x11_queue_present()
1873 xcb_xfixes_set_region(chain->conn, update_area, damage->rectangleCount, rects); in x11_queue_present()
Dwsi_common_wayland.c2010 damage->pRectangles && damage->rectangleCount > 0) { in wsi_wl_swapchain_queue_present()
2011 for (unsigned i = 0; i < damage->rectangleCount; i++) { in wsi_wl_swapchain_queue_present()
Dwsi_common_win32.cpp674 uint32_t rect_count = damage ? damage->rectangleCount : 0; in wsi_win32_queue_present_dxgi()
/hardware/google/gfxstream/host/vulkan/cereal/common/
Dgoldfish_vk_deepcopy.cpp6908 (VkRectLayerKHR*)alloc->alloc(from->rectangleCount * sizeof(const VkRectLayerKHR)); in deepcopy_VkPresentRegionKHR()
6909 to->rectangleCount = from->rectangleCount; in deepcopy_VkPresentRegionKHR()
6910 for (uint32_t i = 0; i < (uint32_t)from->rectangleCount; ++i) { in deepcopy_VkPresentRegionKHR()
Dgoldfish_vk_transform.cpp6460 for (uint32_t i = 0; i < (uint32_t)toTransform->rectangleCount; ++i) { in transform_tohost_VkPresentRegionKHR()
6474 for (uint32_t i = 0; i < (uint32_t)toTransform->rectangleCount; ++i) { in transform_fromhost_VkPresentRegionKHR()
Dgoldfish_vk_marshaling.cpp14217 vkStream->write((uint32_t*)&forMarshaling->rectangleCount, sizeof(uint32_t)); in marshal_VkPresentRegionKHR()
14223 for (uint32_t i = 0; i < (uint32_t)forMarshaling->rectangleCount; ++i) { in marshal_VkPresentRegionKHR()
14234 vkStream->read((uint32_t*)&forUnmarshaling->rectangleCount, sizeof(uint32_t)); in unmarshal_VkPresentRegionKHR()
14239 forUnmarshaling->rectangleCount * sizeof(const VkRectLayerKHR)); in unmarshal_VkPresentRegionKHR()
14241 for (uint32_t i = 0; i < (uint32_t)forUnmarshaling->rectangleCount; ++i) { in unmarshal_VkPresentRegionKHR()
Dgoldfish_vk_reserved_marshaling.cpp10940 memcpy((uint32_t*)&forUnmarshaling->rectangleCount, *ptr, sizeof(uint32_t)); in reservedunmarshal_VkPresentRegionKHR()
10948 forUnmarshaling->rectangleCount * sizeof(const VkRectLayerKHR)); in reservedunmarshal_VkPresentRegionKHR()
10949 for (uint32_t i = 0; i < (uint32_t)forUnmarshaling->rectangleCount; ++i) { in reservedunmarshal_VkPresentRegionKHR()
/hardware/google/gfxstream/guest/vulkan_enc/
Dgoldfish_vk_deepcopy_guest.cpp6701 (VkRectLayerKHR*)alloc->alloc(from->rectangleCount * sizeof(const VkRectLayerKHR)); in deepcopy_VkPresentRegionKHR()
6702 to->rectangleCount = from->rectangleCount; in deepcopy_VkPresentRegionKHR()
6703 for (uint32_t i = 0; i < (uint32_t)from->rectangleCount; ++i) { in deepcopy_VkPresentRegionKHR()
Dgoldfish_vk_transform_guest.cpp6260 for (uint32_t i = 0; i < (uint32_t)toTransform->rectangleCount; ++i) { in transform_tohost_VkPresentRegionKHR()
6274 for (uint32_t i = 0; i < (uint32_t)toTransform->rectangleCount; ++i) { in transform_fromhost_VkPresentRegionKHR()
Dgoldfish_vk_marshaling_guest.cpp11072 vkStream->write((uint32_t*)&forMarshaling->rectangleCount, sizeof(uint32_t)); in marshal_VkPresentRegionKHR()
11078 for (uint32_t i = 0; i < (uint32_t)forMarshaling->rectangleCount; ++i) { in marshal_VkPresentRegionKHR()
11089 vkStream->read((uint32_t*)&forUnmarshaling->rectangleCount, sizeof(uint32_t)); in unmarshal_VkPresentRegionKHR()
11099 for (uint32_t i = 0; i < (uint32_t)forUnmarshaling->rectangleCount; ++i) { in unmarshal_VkPresentRegionKHR()
Dgoldfish_vk_reserved_marshaling_guest.cpp7473 memcpy(*ptr, (uint32_t*)&forMarshaling->rectangleCount, sizeof(uint32_t)); in reservedmarshal_VkPresentRegionKHR()
7481 for (uint32_t i = 0; i < (uint32_t)forMarshaling->rectangleCount; ++i) { in reservedmarshal_VkPresentRegionKHR()
Dgoldfish_vk_counting_guest.cpp5877 for (uint32_t i = 0; i < (uint32_t)toCount->rectangleCount; ++i) { in count_VkPresentRegionKHR()
/hardware/google/gfxstream/common/vulkan/include/vulkan/
Dvulkansc_hash.hpp6014 VULKAN_HPP_HASH_COMBINE( seed, presentRegionKHR.rectangleCount ); in operator ()()
Dvulkan_hash.hpp11612 VULKAN_HPP_HASH_COMBINE( seed, presentRegionKHR.rectangleCount ); in operator ()()
/hardware/google/gfxstream/guest/mesa/include/vulkan/
Dvulkan_core.h8855 uint32_t rectangleCount; member