HomeSort by relevance Sort by last modified time
    Searched defs:swapchain (Results 1 - 6 of 6) sorted by null

  /external/vulkan-validation-layers/demos/smoke/
Shell.h 68 VkSwapchainKHR swapchain; member in struct:Shell::Context
  /frameworks/native/vulkan/libvulkan/
swapchain.cpp 123 struct Swapchain {
124 Swapchain(Surface& surface_, uint32_t num_images_)
143 VkSwapchainKHR HandleFromSwapchain(Swapchain* swapchain) {
144 return VkSwapchainKHR(reinterpret_cast<uint64_t>(swapchain));
147 Swapchain* SwapchainFromHandle(VkSwapchainKHR handle) {
148 return reinterpret_cast<Swapchain*>(handle);
154 Swapchain::Image& image) {
168 // We get here during swapchain destruction, or various serious
171 // have already signalled, since the swapchain images are suppose
721 Swapchain* swapchain = SwapchainFromHandle(swapchain_handle); local
740 Swapchain& swapchain = *SwapchainFromHandle(swapchain_handle); local
766 Swapchain& swapchain = *SwapchainFromHandle(swapchain_handle); local
864 Swapchain& swapchain = local
    [all...]
  /external/vulkan-validation-layers/layers/
swapchain.h 40 // Swapchain ERROR codes
68 SWAPCHAIN_INDEX_TOO_LARGE, // Index is too large for swapchain
86 #define LAYER_NAME (char *) "Swapchain"
300 VkSwapchainKHR swapchain; member in struct:_SwpSwapchain
core_validation.h 129 void *object; // Dispatchable object used to create this memory (device of swapchain)
146 bool valid; // If this is a swapchain image backing memory is not a MT_MEM_OBJ_INFO so store it here.
168 VkSwapchainKHR swapchain; // Swapchain that this fence is submitted against or NULL member in struct:MT_FENCE_INFO
186 // Track Swapchain Information
524 VkSwapchainKHR swapchain; // Swapchain that this fence is submitted against or NULL member in class:FENCE_NODE
    [all...]
  /external/vulkan-validation-layers/demos/
tri.c 204 VkSwapchainKHR swapchain; member in struct:demo
495 // Get the index of the next available swapchain image:
496 err = demo->fpAcquireNextImageKHR(demo->device, demo->swapchain, UINT64_MAX,
501 // demo->swapchain is out of date (e.g. the window was resized) and
508 // demo->swapchain is not as optimal as it could be, but the platform's
550 .pSwapchains = &demo->swapchain,
557 // demo->swapchain is out of date (e.g. the window was resized) and
561 // demo->swapchain is not as optimal as it could be, but the platform's
575 VkSwapchainKHR oldSwapchain = demo->swapchain;
629 const VkSwapchainCreateInfoKHR swapchain = local
    [all...]
cube.c 374 VkSwapchainKHR swapchain; member in struct:demo
689 // Get the index of the next available swapchain image:
690 err = demo->fpAcquireNextImageKHR(demo->device, demo->swapchain, UINT64_MAX,
695 // demo->swapchain is out of date (e.g. the window was resized) and
702 // demo->swapchain is not as optimal as it could be, but the platform's
743 .pSwapchains = &demo->swapchain,
750 // demo->swapchain is out of date (e.g. the window was resized) and
754 // demo->swapchain is not as optimal as it could be, but the platform's
768 VkSwapchainKHR oldSwapchain = demo->swapchain;
836 const VkSwapchainCreateInfoKHR swapchain = local
    [all...]

Completed in 102 milliseconds