diff options
| author | Chia-I Wu <olv@lunarg.com> | 2015-10-26 19:08:09 +0800 |
|---|---|---|
| committer | Chia-I Wu <olv@lunarg.com> | 2015-10-30 20:49:23 +0800 |
| commit | 083d492b8397c6336892b4e25fa45a97f7687cab (patch) | |
| tree | 7135c6775dfd1747373958cea6768da378f49696 /vulkan.py | |
| parent | c16d2e0849b245c69ef0c13396864a5f1a447777 (diff) | |
| download | usermoji-083d492b8397c6336892b4e25fa45a97f7687cab.tar.xz | |
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
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -724,9 +724,9 @@ core = Extension( 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"), |
