Code Cleanup / Cycles:

* Remove an unused parameter from Checker texture and correct a typo in license header.
This commit is contained in:
Thomas Dinges
2013-05-20 00:26:48 +00:00
parent 51f04bf7b8
commit 289ca57e7a
3 changed files with 3 additions and 3 deletions

View File

@@ -36,7 +36,7 @@ __device_noinline float svm_checker(float3 p, float scale)
return ((xi % 2 == yi % 2) == (zi % 2))? 1.0f: 0.0f;
}
__device void svm_node_tex_checker(KernelGlobals *kg, ShaderData *sd, float *stack, uint4 node, int *offset)
__device void svm_node_tex_checker(KernelGlobals *kg, ShaderData *sd, float *stack, uint4 node)
{
uint co_offset, color1_offset, color2_offset, scale_offset;
uint color_offset, fac_offset;