1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-05 17:28:47 +00:00

d3dcompiler_43: Use debugstr_fourcc instead of debugstr_an.

This commit is contained in:
Alex Henrie 2023-10-16 23:28:25 -06:00 committed by Alexandre Julliard
parent c7d9c4a8b6
commit aca965d7f2
2 changed files with 4 additions and 4 deletions

View File

@ -209,7 +209,7 @@ static BOOL check_blob_part(DWORD tag, D3D_BLOB_PART part)
break; break;
} }
TRACE("%s tag %s\n", add ? "Add" : "Skip", debugstr_an((const char *)&tag, 4)); TRACE("%s tag %s\n", add ? "Add" : "Skip", debugstr_fourcc(tag));
return add; return add;
} }
@ -341,7 +341,7 @@ static BOOL check_blob_strip(DWORD tag, UINT flags)
break; break;
} }
TRACE("%s tag %s\n", add ? "Add" : "Skip", debugstr_an((const char *)&tag, 4)); TRACE("%s tag %s\n", add ? "Add" : "Skip", debugstr_fourcc(tag));
return add; return add;
} }

View File

@ -1705,7 +1705,7 @@ static HRESULT d3dcompiler_parse_signature(struct d3dcompiler_shader_signature *
break; break;
default: default:
FIXME("Unhandled section %s!\n", debugstr_an((const char *)&section->tag, 4)); FIXME("Unhandled section %s!\n", debugstr_fourcc(section->tag));
element_size = D3DCOMPILER_SIGNATURE_ELEMENT_SIZE6; element_size = D3DCOMPILER_SIGNATURE_ELEMENT_SIZE6;
break; break;
} }
@ -1963,7 +1963,7 @@ static HRESULT d3dcompiler_shader_reflection_init(struct d3dcompiler_shader_refl
break; break;
default: default:
FIXME("Unhandled section %s!\n", debugstr_an((const char *)&section->tag, 4)); FIXME("Unhandled section %s!\n", debugstr_fourcc(section->tag));
break; break;
} }
} }