misc: Rename depthClip to depthClamp

Implementations will need to invert their behavior.
commit: 60a6646e24e58b1e2c44ea8eeb1017fc133593a1
diff --git a/tests/vkrenderframework.cpp b/tests/vkrenderframework.cpp
index 87cdaca..cc38ba8 100644
--- a/tests/vkrenderframework.cpp
+++ b/tests/vkrenderframework.cpp
@@ -1140,7 +1140,7 @@
 
     m_rs_state.sType = VK_STRUCTURE_TYPE_PIPELINE_RASTER_STATE_CREATE_INFO;
     m_rs_state.pNext = VK_NULL_HANDLE;
-    m_rs_state.depthClipEnable = VK_FALSE;
+    m_rs_state.depthClampEnable = VK_TRUE;
     m_rs_state.rasterizerDiscardEnable = VK_FALSE;
     m_rs_state.fillMode = VK_FILL_MODE_SOLID;
     m_rs_state.cullMode = VK_CULL_MODE_BACK;