We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa4f8fe commit aa419f8Copy full SHA for aa419f8
renderdoc/driver/shaders/dxil/dxil_reflect.cpp
@@ -792,7 +792,7 @@ void Program::FillRayPayloads(
792
rayPayloads[entryPoint].second = MakePayloadType(typeInfo, ownAttrType);
793
else
794
RDCERR("Couldn't find matching attribute type for '%s' by name",
795
- executableAttrType->name);
+ executableAttrType->name.c_str());
796
break;
797
}
798
@@ -839,7 +839,7 @@ void Program::FillRayPayloads(
839
rayPayloads[entryPoint].first = MakePayloadType(typeInfo, ownPayloadType);
840
841
RDCERR("Couldn't find matching payload type for '%s' by name",
842
- executablePayloadType->name);
+ executablePayloadType->name.c_str());
843
844
845
0 commit comments