|
@@ -125,7 +125,7 @@ void PrintShaderResource(const DKShaderResource& res)
|
125
|
125
|
auto* p = res.structTypeMemberMap.Find(mem.typeInfoKey);
|
126
|
126
|
if (p)
|
127
|
127
|
{
|
128
|
|
- DKLogI(" %ls+TypeKey: %ls (struct)",
|
|
128
|
+ DKLogI(" %ls Struct \"%ls\"",
|
129
|
129
|
(const wchar_t*)indentStr,
|
130
|
130
|
(const wchar_t*)mem.typeInfoKey);
|
131
|
131
|
MemberPrinter{ res, indent + 1 }.operator()(p->value);
|
|
@@ -158,7 +158,7 @@ void PrintShaderResource(const DKShaderResource& res)
|
158
|
158
|
|
159
|
159
|
if (res.type == DKShaderResource::TypeBuffer)
|
160
|
160
|
{
|
161
|
|
- DKLogI(" +Type:%s, Access:%s, Enabled:%d, Size:%d",
|
|
161
|
+ DKLogI(" Type:%s, Access:%s, Enabled:%d, Size:%d",
|
162
|
162
|
type,
|
163
|
163
|
access,
|
164
|
164
|
int(res.enabled),
|
|
@@ -166,13 +166,13 @@ void PrintShaderResource(const DKShaderResource& res)
|
166
|
166
|
}
|
167
|
167
|
else
|
168
|
168
|
{
|
169
|
|
- DKLogI(" +Type:%s, Access:%s, Enabled:%d",
|
|
169
|
+ DKLogI(" Type:%s, Access:%s, Enabled:%d",
|
170
|
170
|
type,
|
171
|
171
|
access,
|
172
|
172
|
int(res.enabled));
|
173
|
173
|
}
|
174
|
174
|
if (res.typeInfoKey.Length() > 0)
|
175
|
|
- DKLogI(" +TypeKey: %ls (struct)", (const wchar_t*)res.typeInfoKey);
|
|
175
|
+ DKLogI(" Struct \"%ls\"", (const wchar_t*)res.typeInfoKey);
|
176
|
176
|
if (res.type == DKShaderResource::TypeBuffer)
|
177
|
177
|
{
|
178
|
178
|
auto p = res.structTypeMemberMap.Find(res.typeInfoKey);
|