The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

a/vk: Add missing features in print and sort

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2397>

authored by

Jakob Bornecrantz and committed by
Marge Bot
e689bd43 3a99973a

+6 -4
+6 -4
src/xrt/auxiliary/vk/vk_bundle_init.c
··· 1116 1116 1117 1117 VK_DEBUG(vk, 1118 1118 "Features:" 1119 + "\n\text_fmt_resolve: %i" 1119 1120 "\n\tnull_descriptor: %i" 1120 1121 "\n\tshader_image_gather_extended: %i" 1121 1122 "\n\tshader_storage_image_write_without_format: %i" 1122 - "\n\ttimeline_semaphore: %i" 1123 - "\n\tsynchronization_2: %i", // 1123 + "\n\tsynchronization_2: %i" 1124 + "\n\ttimeline_semaphore: %i", // 1125 + device_features->ext_fmt_resolve, // 1124 1126 device_features->null_descriptor, // 1125 1127 device_features->shader_image_gather_extended, // 1126 1128 device_features->shader_storage_image_write_without_format, // 1127 - device_features->timeline_semaphore, // 1128 - device_features->synchronization_2); 1129 + device_features->synchronization_2, // 1130 + device_features->timeline_semaphore); // 1129 1131 } 1130 1132 1131 1133