loader: bug 12992: extension and layer support
Much of layers and loader updated to work with
final extension and layer mechanism.
Not everything is working here.
diff --git a/tests/image_tests.cpp b/tests/image_tests.cpp
index 6fedab1..b7702dc 100644
--- a/tests/image_tests.cpp
+++ b/tests/image_tests.cpp
@@ -99,8 +99,10 @@
inst_info.pNext = NULL;
inst_info.pAppInfo = &app_info;
inst_info.pAllocCb = NULL;
+ inst_info.layerCount = 0;
+ inst_info.ppEnabledLayerNames = NULL;
inst_info.extensionCount = 0;
- inst_info.pEnabledExtensions = NULL;
+ inst_info.ppEnabledExtensionNames = NULL;
err = vkCreateInstance(&inst_info, &this->inst);
ASSERT_VK_SUCCESS(err);
err = vkEnumeratePhysicalDevices(this->inst, &this->gpu_count, NULL);