Commit 11be86b5 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed constant in tnlCuda::getMaxGridSize

parent 4f66a8f2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ __host__ __device__
inline int tnlCuda::getMaxGridSize()
{
   // TODO: make it preprocessor macro constant defined in tnlConfig
   return 65536;
   return 65535;
};

#ifdef HAVE_CUDA