diff options
| author | Jon Ashburn <jon@lunarg.com> | 2016-02-03 12:37:30 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2016-02-03 12:37:30 -0700 |
| commit | fcb667c012545e70c71c5ebafeff234038fa14c3 (patch) | |
| tree | d8256d98cf96cbdca579a62e99d09ab9b589e9ad /loader/loader.h | |
| parent | a5c3febc91aacac8be0fcc1f552234270b537513 (diff) | |
| download | usermoji-fcb667c012545e70c71c5ebafeff234038fa14c3.tar.xz | |
loader: Fix bug on pass by value for created_instance
Diffstat (limited to 'loader/loader.h')
| -rw-r--r-- | loader/loader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/loader.h b/loader/loader.h index 266ec039..ac20d748 100644 --- a/loader/loader.h +++ b/loader/loader.h @@ -494,7 +494,7 @@ void loader_deactivate_instance_layers(struct loader_instance *instance); VkResult loader_create_instance_chain(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, struct loader_instance *inst, - VkInstance created_instance); + VkInstance *created_instance); void loader_activate_instance_layer_extensions(struct loader_instance *inst, VkInstance created_inst); |
