Lines Matching defs:Sampler
4658 class Sampler : public detail::Wrapper<cl_sampler>
4662 Sampler() { }
4664 /*! \brief Constructs a Sampler in a specified context.
4668 Sampler(
4692 * into the new Sampler object.
4694 __CL_EXPLICIT_CONSTRUCTORS Sampler(const cl_sampler& sampler) : detail::Wrapper<cl_type>(sampler) { }
4701 Sampler& operator = (const cl_sampler& rhs)
4710 Sampler(const Sampler& sam) : detail::Wrapper<cl_type>(sam) {}
4715 Sampler& operator = (const Sampler &sam)
4725 Sampler(Sampler&& sam) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(sam)) {}
4730 Sampler& operator = (Sampler &&sam)