Bug 13632 Header 84 Assorted questions and comments on vulkan.h
diff --git a/icd/intel/fb.c b/icd/intel/fb.c
index 5a0ec80..665f043 100644
--- a/icd/intel/fb.c
+++ b/icd/intel/fb.c
@@ -49,7 +49,7 @@
fb = (struct intel_fb *) intel_base_create(&dev->base.handle,
sizeof(*fb), dev->base.dbg, VK_DBG_OBJECT_FRAMEBUFFER, info, 0);
if (!fb)
- return VK_ERROR_OUT_OF_MEMORY;
+ return VK_ERROR_OUT_OF_HOST_MEMORY;
width = info->width;
height = info->height;
@@ -148,7 +148,7 @@
rp = (struct intel_render_pass *) intel_base_create(&dev->base.handle,
sizeof(*rp), dev->base.dbg, VK_DBG_OBJECT_RENDER_PASS, info, 0);
if (!rp)
- return VK_ERROR_OUT_OF_MEMORY;
+ return VK_ERROR_OUT_OF_HOST_MEMORY;
rp->obj.destroy = render_pass_destroy;