aboutsummaryrefslogtreecommitdiff
path: root/loader
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2015-10-26 19:08:09 +0800
committerChia-I Wu <olv@lunarg.com>2015-10-30 20:49:23 +0800
commit083d492b8397c6336892b4e25fa45a97f7687cab (patch)
tree7135c6775dfd1747373958cea6768da378f49696 /loader
parentc16d2e0849b245c69ef0c13396864a5f1a447777 (diff)
downloadusermoji-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 'loader')
-rw-r--r--loader/trampoline.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/trampoline.c b/loader/trampoline.c
index f359f616..d677253d 100644
--- a/loader/trampoline.c
+++ b/loader/trampoline.c
@@ -1135,13 +1135,13 @@ LOADER_EXPORT void VKAPI vkCmdSetLineWidth(VkCmdBuffer cmdBuffer, float lineWidt
disp->CmdSetLineWidth(cmdBuffer, lineWidth);
}
-LOADER_EXPORT void VKAPI vkCmdSetDepthBias(VkCmdBuffer cmdBuffer, float depthBias, float depthBiasClamp, float slopeScaledDepthBias)
+LOADER_EXPORT void VKAPI vkCmdSetDepthBias(VkCmdBuffer cmdBuffer, float depthBiasConstantFactor, float depthBiasClamp, float depthBiasSlopeFactor)
{
const VkLayerDispatchTable *disp;
disp = loader_get_dispatch(cmdBuffer);
- disp->CmdSetDepthBias(cmdBuffer, depthBias, depthBiasClamp, slopeScaledDepthBias);
+ disp->CmdSetDepthBias(cmdBuffer, depthBiasConstantFactor, depthBiasClamp, depthBiasSlopeFactor);
}
LOADER_EXPORT void VKAPI vkCmdSetBlendConstants(VkCmdBuffer cmdBuffer, const float blendConst[4])