diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2015-09-23 09:44:22 -0600 |
|---|---|---|
| committer | Mark Lobodzinski <mark@lunarg.com> | 2015-09-23 11:23:11 -0600 |
| commit | bd58b3dcc748e2cb9b3e648b60b887380f4b1931 (patch) | |
| tree | 1ce61bcb4177b842386379a182cd62112fe8c66f /loader | |
| parent | b127bd60f48402ee949511b0df88be034d0d94dd (diff) | |
| download | usermoji-bd58b3dcc748e2cb9b3e648b60b887380f4b1931.tar.xz | |
loader: Remove validation checks from loader.c
These checks are covered by ObjectTracker.
Diffstat (limited to 'loader')
| -rw-r--r-- | loader/loader.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/loader/loader.c b/loader/loader.c index 96b01202..56b64968 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -2675,19 +2675,10 @@ void VKAPI loader_DestroyInstance( prev = next; next = next->next; } - /* TODOVV: Move this test to validation layer */ -// if (next == NULL) { -// // This must be an invalid instance handle or empty list -// return VK_ERROR_INVALID_HANDLE; -// } while (icds) { if (icds->instance) { icds->DestroyInstance(icds->instance); - /* TODOVV: Move this test to validation layer */ - //if (res != VK_SUCCESS) - // loader_log(VK_DBG_REPORT_WARN_BIT, 0, - // "ICD ignored: failed to DestroyInstance on device"); } next_icd = icds->next; icds->instance = VK_NULL_HANDLE; |
