Lines Matching defs:Sampler
5559 class Sampler : public detail::Wrapper<cl_sampler>
5563 Sampler() { }
5565 /*! \brief Constructs a Sampler in a specified context.
5569 Sampler(
5614 * into the new Sampler object.
5616 explicit Sampler(const cl_sampler& sampler, bool retainObject = false) :
5624 Sampler& operator = (const cl_sampler& rhs)
5633 Sampler(const Sampler& sam) : detail::Wrapper<cl_type>(sam) {}
5638 Sampler& operator = (const Sampler &sam)
5647 Sampler(Sampler&& sam) CL_HPP_NOEXCEPT_ : detail::Wrapper<cl_type>(std::move(sam)) {}
5652 Sampler& operator = (Sampler &&sam)