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 5d6e257 commit 59c92b0Copy full SHA for 59c92b0
src/d3d11/d3d11_shader.cpp
@@ -47,10 +47,10 @@ namespace dxvk {
47
48
if (dstIsGs && !srcIsGs) {
49
if (!converter.createPassthroughGs(builder))
50
- throw DxvkError("Failed to create pass-through GS.");
+ throw DxvkError(str::format("Failed to create pass-through geometry shader: ", m_key.toString()));
51
} else {
52
if (!converter.convertShader(builder))
53
- throw DxvkError("Failed to convert shader.");
+ throw DxvkError(str::format("Failed to convert shader: ", m_key.toString()));
54
}
55
56
0 commit comments