Fixed Windows compilation/link errors ...
authorCourtney Goeltzenleuchter <courtney@LunarG.com>
Wed, 15 Apr 2015 01:07:06 +0000 (19:07 -0600)
committerChia-I Wu <olv@lunarg.com>
Thu, 16 Apr 2015 09:48:18 +0000 (17:48 +0800)
without Glave auto-gen changes.

BUILD.md
icd/nulldrv/nulldrv.c

index 926cf87..7ea0367 100644 (file)
--- a/BUILD.md
+++ b/BUILD.md
@@ -168,7 +168,7 @@ cd _out64
 cmake -G "Visual Studio 12 Win64" -DCMAKE_BUILD_TYPE=Debug ..
 ```
 
-At this point, you can use Windows Explorer to launch Visual Studio by double-clicking on the "VK.sln" file in the _out64 folder.  Once Visual Studio comes up, you can select "Debug" or "Release" from a drop-down list.  You can start a build with either the menu (Build->Build Solution), or a keyboard shortcut (Ctrl+Shift+B).  As part of the build process, Python scripts will create additional Visual Studio files and projects, along with additional source files.  All of these auto-generated files are under the "_out64" folder.
+At this point, you can use Windows Explorer to launch Visual Studio by double-clicking on the "VULKAN.sln" file in the _out64 folder.  Once Visual Studio comes up, you can select "Debug" or "Release" from a drop-down list.  You can start a build with either the menu (Build->Build Solution), or a keyboard shortcut (Ctrl+Shift+B).  As part of the build process, Python scripts will create additional Visual Studio files and projects, along with additional source files.  All of these auto-generated files are under the "_out64" folder.
 
 VK programs must be able to find and use the VK.dll libary. Make sure it is either installed in the C:\Windows\System32 folder, or the PATH enviroment variable includes the folder that it is located in.
 
index 41de195..7aac170 100644 (file)
@@ -1312,6 +1312,15 @@ ICD_EXPORT VK_RESULT VKAPI vkGetFenceStatus(
     return VK_SUCCESS;
 }
 
+ICD_EXPORT VK_RESULT VKAPI vkResetFences(
+    VK_DEVICE                                  device,
+    uint32_t                                   fenceCount,
+    VK_FENCE*                                  pFences)
+{
+    NULLDRV_LOG_FUNC;
+    return VK_SUCCESS;
+}
+
 ICD_EXPORT VK_RESULT VKAPI vkWaitForFences(
     VK_DEVICE                                  device,
     uint32_t                                    fenceCount,