clover: Return 0 as storage size for local kernel args that are not set v2

The storage size for local kernel args can be queried before the
arguments are set by using the CL_KERNEL_LOCAL_MEM_SIZE param
of clGetKernelWorkGroupInfo().

The spec says that if local kernel arguments have not been specified,
then we should assume their size is 0.

v2:
  - Implement using c++11 member initialization.

Reviewed-by: Jan Vesely <jan.vesely@rutgers.edu>
Reviewed-by: Francisco Jerez <currojerez@riseup.net>

Cc: 10.5 10.4 <mesa-stable@lists.freedesktop.org>
This commit is contained in:
Tom Stellard 2015-03-20 22:19:43 +00:00
parent 769b366b83
commit dfb1ae9d91

View file

@ -175,7 +175,7 @@ namespace clover {
virtual void unbind(exec_context &ctx);
private:
size_t _storage;
size_t _storage = 0;
};
class constant_argument : public argument {