summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/render-test/render-d3d11.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/render-test/render-d3d11.cpp b/tools/render-test/render-d3d11.cpp
index 6b42d0fe3..3f0a8cc53 100644
--- a/tools/render-test/render-d3d11.cpp
+++ b/tools/render-test/render-d3d11.cpp
@@ -1100,6 +1100,7 @@ public:
auto dxContext = dxImmediateContext;
auto dxBindingState = (D3DBindingState*)state;
FILE * f = fopen(fileName, "wb");
+ int id = 0;
for (auto & binding : dxBindingState->bindings)
{
if (binding.isOutput)
@@ -1113,9 +1114,10 @@ public:
}
else
{
- throw "not implemented";
+ printf("invalid output type at %d.\n");
}
}
+ id++;
}
fprintf(f, "test result. \n");
fclose(f);