Merge pull request #331 from Nazg-Gul/dev

Fix mismatch in declaration and usage of OsdCudaComputeRestrictedVertexA
This commit is contained in:
Manuel Kraemer 2014-07-03 09:51:25 -07:00
commit fc048bfb63

View File

@ -1149,7 +1149,7 @@ void OsdCudaComputeVertexB(float *vertex, float *varying,
void OsdCudaComputeRestrictedVertexA(float *vertex, float *varying,
int vertexLength, int vertexStride,
int varyingLength, int varyingStride,
int *V_ITa, int offset, int tableOffset, int start, int end, int pass)
int *V_ITa, int offset, int tableOffset, int start, int end)
{
// computeRestrictedVertexA<0, 3><<<512,32>>>(vertex, varying, V_ITa, offset, start, end);
OPT_KERNEL(0, 0, computeRestrictedVertexA, 512, 32, (vertex, varying, V_ITa, offset, tableOffset, start, end));