Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
sampler.cc
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
6
7namespace impeller {
8
9Sampler::Sampler(SamplerDescriptor desc) : desc_(std::move(desc)) {}
10
11Sampler::~Sampler() = default;
12
14 return desc_;
15}
16
17} // namespace impeller
Sampler(SamplerDescriptor desc)
Definition sampler.cc:9
virtual ~Sampler()
const SamplerDescriptor & GetDescriptor() const
Definition sampler.cc:13
SamplerDescriptor desc_
Definition sampler.h:22
Definition ref_ptr.h:256