Browse Source

Vulkan properties 추가. (pipeline cache path)

Hongtae Kim 5 years ago
parent
commit
1529a8593a
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      TestApp1/TestApp1.cpp

+ 7
- 0
TestApp1/TestApp1.cpp View File

@@ -183,6 +183,13 @@ public:
183 183
 		DKLog("resPath: %ls", (const wchar_t*)resPath);
184 184
 		resourcePool.AddLocatorForPath(resPath);
185 185
 
186
+		DKVariant vulkanProps;
187
+		vulkanProps.NewValueAtKeyPath("pipelineCacheFilePath", 
188
+									  DefaultPath(SystemPath::AppExecutable).FilePathStringByAppendingPath("pipeline.cache"));
189
+
190
+		DKPropertySet::SystemConfig().SetValue("Vulkan", vulkanProps);
191
+
192
+
186 193
 		DKObject<DKData> vertData = resourcePool.LoadResourceData("shaders/texture/texture.vert.spv");
187 194
 		DKObject<DKData> fragData = resourcePool.LoadResourceData("shaders/texture/texture.frag.spv");
188 195