Browse Source

no message

Hongtae Kim 6 years ago
parent
commit
7bb6385718
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      TestApp1/TestApp1.cpp

+ 4
- 4
TestApp1/TestApp1.cpp View File

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