misc: Rename depthClip to depthClamp

Implementations will need to invert their behavior.
commit: 60a6646e24e58b1e2c44ea8eeb1017fc133593a1
diff --git a/icd/intel/pipeline.c b/icd/intel/pipeline.c
index 236e6bf..d152f75 100644
--- a/icd/intel/pipeline.c
+++ b/icd/intel/pipeline.c
@@ -363,7 +363,7 @@
     const VkPipelineRasterStateCreateInfo *rs_state = &info->rs;
     bool ccw;
 
-    pipeline->depthClipEnable = rs_state->depthClipEnable;
+    pipeline->depthClipEnable = !rs_state->depthClampEnable;
     pipeline->rasterizerDiscardEnable = rs_state->rasterizerDiscardEnable;
     pipeline->depthBiasEnable = rs_state->depthBiasEnable;