File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -368,6 +368,9 @@ static VKAPI_ATTR void VKAPI_CALL GetPhysicalDeviceFeatures(VkPhysicalDevice phy
368
368
SetBoolArrayTrue (bool_array, num_bools);
369
369
}
370
370
371
+ // When using profiles, the format features are found in tests/device_profiles/max_profile.json
372
+ //
373
+ // Updating this function is not how to add specific format support for the "normal" case
371
374
static VKAPI_ATTR void VKAPI_CALL GetPhysicalDeviceFormatProperties (VkPhysicalDevice physicalDevice, VkFormat format,
372
375
VkFormatProperties* pFormatProperties) {
373
376
if (VK_FORMAT_UNDEFINED == format) {
@@ -1339,6 +1342,9 @@ static VKAPI_ATTR void VKAPI_CALL GetPhysicalDeviceProperties2(VkPhysicalDevice
1339
1342
}
1340
1343
}
1341
1344
1345
+ // When using profiles, the format features are found in tests/device_profiles/max_profile.json
1346
+ //
1347
+ // Updating this function is not how to add specific format support for the "normal" case
1342
1348
static VKAPI_ATTR void VKAPI_CALL GetPhysicalDeviceFormatProperties2 (VkPhysicalDevice physicalDevice, VkFormat format,
1343
1349
VkFormatProperties2* pFormatProperties) {
1344
1350
GetPhysicalDeviceFormatProperties (physicalDevice, format, &pFormatProperties->formatProperties );
You can’t perform that action at this time.
0 commit comments