|
@@ -36,7 +36,7 @@ public:
|
36
|
36
|
for (int i = 0; i < vertShaderFunction->VertexAttributes().Count(); ++i)
|
37
|
37
|
{
|
38
|
38
|
const DKVertexAttribute& attr = vertShaderFunction->VertexAttributes().Value(i);
|
39
|
|
- DKLog(" --> VertexAttribute[%d]: %ls (%u)", i, (const wchar_t*)attr.name, attr.location);
|
|
39
|
+ DKLog(" --> VertexAttribute[%d]: \"%ls\" (location:%u)", i, (const wchar_t*)attr.name, attr.location);
|
40
|
40
|
}
|
41
|
41
|
|
42
|
42
|
struct Vertex
|
|
@@ -96,7 +96,7 @@ public:
|
96
|
96
|
case DKShaderArgument::TypeSampler: argType = "Sampler"; break;
|
97
|
97
|
case DKShaderArgument::TypeThreadgroupMemory: argType = "ThreadMemory"; break;
|
98
|
98
|
}
|
99
|
|
- DKLog(" --> %ls[%u] binding:%u:%u type:%s", (const wchar_t*)arg.name, uint32_t(arg.arrayLength), arg.set, arg.binding, argType);
|
|
99
|
+ DKLog(" --> \"%ls\"[%u] binding:%u:%u type:%s", (const wchar_t*)arg.name, uint32_t(arg.count), arg.set, arg.binding, argType);
|
100
|
100
|
};
|
101
|
101
|
DKLog("PipelineReflection.VertexArguments: %d", reflection.vertexArguments.Count());
|
102
|
102
|
for (auto& arg : reflection.vertexArguments)
|