Skip to content

Commit

Permalink
DXIL Debugger handle DW_TAG_const_type in AddDebugType()
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorro666 committed Oct 25, 2024
1 parent 392b729 commit 9b7c3da
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions renderdoc/driver/shaders/dxil/dxil_debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4670,6 +4670,7 @@ const TypeData &Debugger::AddDebugType(const DXIL::Metadata *typeMD)
const DIDerivedType *derivedType = base->As<DIDerivedType>();
switch(derivedType->tag)
{
case DW_TAG_const_type:
case DW_TAG_typedef: typeData = AddDebugType(derivedType->base); break;
default:
RDCERR("Unhandled DIDerivedType DIDerivedType Tag type %s",
Expand Down

0 comments on commit 9b7c3da

Please sign in to comment.