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/icd/intel/fence.c b/icd/intel/fence.c
index b0fc114..9137217 100644
--- a/icd/intel/fence.c
+++ b/icd/intel/fence.c
@@ -45,7 +45,7 @@
struct intel_fence *fence;
fence = (struct intel_fence *) intel_base_create(&dev->base.handle,
- sizeof(*fence), dev->base.dbg, VK_DBG_OBJECT_FENCE, info, 0);
+ sizeof(*fence), dev->base.dbg, VK_OBJECT_TYPE_FENCE, info, 0);
if (!fence)
return VK_ERROR_OUT_OF_HOST_MEMORY;