diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-04-14 19:07:06 -0600 |
|---|---|---|
| committer | Chia-I Wu <olv@lunarg.com> | 2015-04-16 17:48:18 +0800 |
| commit | 783eeb111cd15f134f4ce75a76b12904ceb32e40 (patch) | |
| tree | 5b92be7df189d4746de6b00e1471c5e7850cd646 /icd | |
| parent | 28c4d5fba7ea129dcbbc7b63b8f62bb3e686f021 (diff) | |
| download | usermoji-783eeb111cd15f134f4ce75a76b12904ceb32e40.tar.xz | |
Fixed Windows compilation/link errors ...
without Glave auto-gen changes.
Diffstat (limited to 'icd')
| -rw-r--r-- | icd/nulldrv/nulldrv.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/icd/nulldrv/nulldrv.c b/icd/nulldrv/nulldrv.c index 41de195d..7aac1704 100644 --- a/icd/nulldrv/nulldrv.c +++ b/icd/nulldrv/nulldrv.c @@ -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, |
