aboutsummaryrefslogtreecommitdiff
path: root/loader/loader.h
diff options
context:
space:
mode:
authorJon Ashburn <jon@lunarg.com>2016-03-11 14:43:57 -0700
committerJon Ashburn <jon@lunarg.com>2016-03-11 14:45:47 -0700
commit5b36f92f8d4aa4bbb218492e139636b688a9e9c4 (patch)
treef32649e39b9126bbfafa946d2cec206980341149 /loader/loader.h
parent9c1d304292ec442fb1e13ffb22c964f555e713ca (diff)
downloadusermoji-5b36f92f8d4aa4bbb218492e139636b688a9e9c4.tar.xz
loader: make sure createDevice uses ICDs physicalDevice
Trampoline CreateDevice was using the terminator's physicalDevice instead of the ICDs. Change-Id: Ifdc6497fe4130e1ac1440b225401e65600b2a999
Diffstat (limited to 'loader/loader.h')
-rw-r--r--loader/loader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/loader.h b/loader/loader.h
index 89755eb8..3560a906 100644
--- a/loader/loader.h
+++ b/loader/loader.h
@@ -200,7 +200,7 @@ struct loader_icd {
// pointers to find other structs
const struct loader_scanned_icds *this_icd_lib;
const struct loader_instance *this_instance;
-
+ VkPhysicalDevice *phys_devs; // physicalDevice object from icd
struct loader_device *logical_device_list;
VkInstance instance; // instance object from the icd
PFN_vkGetDeviceProcAddr GetDeviceProcAddr;