Searched defs:queue_props (Results 1 - 5 of 5) sorted by relevance

/external/vulkan-validation-layers/tests/
H A Dvkrenderframework.h54 const VkQueueFamilyProperties *queue_props; member in class:VkDeviceObj
H A Dvktestbinding.cpp278 const std::vector<VkQueueFamilyProperties> queue_props = local
281 queue_info.reserve(queue_props.size());
285 for (uint32_t i = 0; i < (uint32_t)queue_props.size(); i++) {
290 qi.queueCount = queue_props[i].queueCount;
295 if (queue_props[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) {
332 VkQueueFamilyProperties *queue_props = local
336 queue_props);
341 for (uint32_t j = 0; j < queue_props[i].queueCount; j++) {
346 if (queue_props[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) {
350 if (queue_props[
[all...]
/external/vulkan-validation-layers/demos/
H A Dvulkaninfo.c120 VkQueueFamilyProperties *queue_props; member in struct:app_gpu
722 gpu->queue_props = malloc(sizeof(gpu->queue_props[0]) * gpu->queue_count);
724 if (!gpu->queue_props)
727 gpu->queue_props);
735 malloc(gpu->queue_props[i].queueCount * sizeof(float));
737 gpu->queue_props[i].queueCount * sizeof(float));
741 gpu->queue_reqs[i].queueCount = gpu->queue_props[i].queueCount;
761 free(gpu->queue_props);
1060 const VkQueueFamilyProperties *props = &gpu->queue_props[i
[all...]
H A Dtri.c178 VkQueueFamilyProperties *queue_props; member in struct:demo
2065 demo->queue_props = (VkQueueFamilyProperties *)malloc(
2068 demo->queue_props);
2158 if ((demo->queue_props[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) != 0) {
2349 free(demo->queue_props);
H A Dcube.c348 VkQueueFamilyProperties *queue_props; member in struct:demo
1827 free(demo->queue_props);
2466 demo->queue_props = (VkQueueFamilyProperties *)malloc(
2469 demo->queue_props);
2474 if (demo->queue_props[gfx_queue_idx].queueFlags & VK_QUEUE_GRAPHICS_BIT)
2561 if ((demo->queue_props[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) != 0) {

Completed in 140 milliseconds