xchange-94: Use VK_ prefix for environment vars

Use the Vulkan namespace (VK_ prefix) on debug environment
variables used in the loader and the Intel sample driver.
This resolves LunarXchange bug #94.
https://vulkan.lunarg.com/app/issues/55b76baa7ef24d0001000072
diff --git a/icd/intel/instance.c b/icd/intel/instance.c
index 861645c..5d6e6ba 100644
--- a/icd/intel/instance.c
+++ b/icd/intel/instance.c
@@ -79,7 +79,7 @@
     intel_debug = 0;
 
     /* parse comma-separated debug options */
-    env = getenv("INTEL_DEBUG");
+    env = getenv("VK_INTEL_DEBUG");
     while (env) {
         const char *p = strchr(env, ',');
         size_t len;