extensions: begin changes for extension support
This patch starts restructuring the various components
(loader, driver, layers, etc.) to support global and
device extensions. Require GetProcAddr to access the
extension functions and related support.
diff --git a/tests/init.cpp b/tests/init.cpp
index 6e5db19..b755d76 100644
--- a/tests/init.cpp
+++ b/tests/init.cpp
@@ -106,7 +106,7 @@
inst_info.pAppInfo = &app_info;
inst_info.pAllocCb = NULL;
inst_info.extensionCount = 0;
- inst_info.ppEnabledExtensionNames = NULL;
+ inst_info.pEnabledExtensions = NULL;
err = vkCreateInstance(&inst_info, &inst);
ASSERT_VK_SUCCESS(err);
err = vkEnumeratePhysicalDevices(inst, &this->gpu_count, NULL);