Lines Matching refs:samplers
208 SamplerList samplers;
209 samplers.push_back(sampler);
210 sampler_map_.emplace(thread_id, std::move(samplers));
212 SamplerList& samplers = it->second;
213 auto sampler_it = std::find(samplers.begin(), samplers.end(), sampler);
214 if (sampler_it == samplers.end()) samplers.push_back(sampler);
224 SamplerList& samplers = it->second;
225 samplers.erase(std::remove(samplers.begin(), samplers.end(), sampler),
226 samplers.end());
227 if (samplers.empty()) {
239 SamplerList& samplers = it->second;
241 for (Sampler* sampler : samplers) {