You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Windows11-ARM systems ship with six dzn layer and ICD files in the same directory:
Directory of C:\Program Files\WindowsApps\microsoft.d3dmappinglayers_1.2409.2.0_arm64__8wekyb3d8bbwe
04/09/2024 11:38 AM 177 dzn_icd.arm64.json
04/09/2024 11:38 AM 175 dzn_icd.x64.json
04/09/2024 11:38 AM 175 dzn_icd.x86.json
07/16/2024 12:26 PM 452 dzn_layer.arm64.json
07/16/2024 12:26 PM 450 dzn_layer.x64.json
07/16/2024 12:26 PM 450 dzn_layer.x86.json
When the loader parses this, it gives warnings about the ICD manifests, that they don't contain a layer field, and warnings about the layer manifests, that they don't contain an ICD field, e.g.:
WARNING: [Loader Message] Code 0 : loader_add_layer_properties: Can not find 'layer' object in manifest JSON file C:\Program Files\WindowsApps\microsoft.d3dmappinglayers_1.2409.2.0_arm64__8wekyb3d8bbwe\dzn_icd.arm64.json. Skipping this file.
WARNING: [Loader Message] Code 0 : loader_add_layer_properties: Can not find 'layer' object in manifest JSON file C:\Program Files\WindowsApps\microsoft.d3dmappinglayers_1.2409.2.0_arm64__8wekyb3d8bbwe\dzn_icd.x64.json. Skipping this file.
WARNING: [Loader Message] Code 0 : loader_add_layer_properties: Can not find 'layer' object in manifest JSON file C:\Program Files\WindowsApps\microsoft.d3dmappinglayers_1.2409.2.0_arm64__8wekyb3d8bbwe\dzn_icd.x86.json. Skipping this file.
WARNING: [Loader Message] Code 0 : loader_parse_icd_manifest: Can not find 'ICD' object in ICD JSON file C:\Program Files\WindowsApps\microsoft.d3dmappinglayers_1.2409.2.0_arm64__8wekyb3d8bbwe\dzn_layer.arm64.json. Skipping ICD JSON
WARNING: [Loader Message] Code 0 : loader_parse_icd_manifest: Can not find 'ICD' object in ICD JSON file C:\Program Files\WindowsApps\microsoft.d3dmappinglayers_1.2409.2.0_arm64__8wekyb3d8bbwe\dzn_layer.x64.json. Skipping ICD JSON
WARNING: [Loader Message] Code 0 : loader_parse_icd_manifest: Can not find 'ICD' object in ICD JSON file C:\Program Files\WindowsApps\microsoft.d3dmappinglayers_1.2409.2.0_arm64__8wekyb3d8bbwe\dzn_layer.x86.json. Skipping ICD JSON
The warnings alarmingly imply that each file is in fact being skipped, when in actuality the layer files were correctly loaded as layers (and skipped only when being considered as ICDs), and the ICD files were correctly loaded as ICDs (and skipped only when being considered as layers).
It would be less concerning and more accurate to only print a warning for a manifest that contained neither a layer nor an ICD field.
The text was updated successfully, but these errors were encountered:
lunarpapillo
changed the title
remove unnnecessary/misleading ICD/layer warnings
remove misleading ICD/layer warnings
Jan 7, 2025
Windows11-ARM systems ship with six
dzn
layer and ICD files in the same directory:When the loader parses this, it gives warnings about the ICD manifests, that they don't contain a
layer
field, and warnings about the layer manifests, that they don't contain anICD
field, e.g.:The warnings alarmingly imply that each file is in fact being skipped, when in actuality the layer files were correctly loaded as layers (and skipped only when being considered as ICDs), and the ICD files were correctly loaded as ICDs (and skipped only when being considered as layers).
It would be less concerning and more accurate to only print a warning for a manifest that contained neither a
layer
nor anICD
field.The text was updated successfully, but these errors were encountered: