bug 14365: Rename slopeScaledDepthBias to depthBiasSlopeScaled (WIP)

s/slopeScaledDepthBias/depthBiasSlopeFactor/g
s/depthBias\b/depthBiasConstantFactor/g

https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14365
diff --git a/vulkan.py b/vulkan.py
index c0d18c7..c75f234 100755
--- a/vulkan.py
+++ b/vulkan.py
@@ -724,9 +724,9 @@
 
         Proto("void", "CmdSetDepthBias",
             [Param("VkCmdBuffer", "cmdBuffer"),
-             Param("float", "depthBias"),
+             Param("float", "depthBiasConstantFactor"),
              Param("float", "depthBiasClamp"),
-             Param("float", "slopeScaledDepthBias")]),
+             Param("float", "depthBiasSlopeFactor")]),
 
         Proto("void", "CmdSetBlendConstants",
             [Param("VkCmdBuffer", "cmdBuffer"),