1 --- include/gpu/GrDriverBugWorkarounds.h
2 +++ include/gpu/GrDriverBugWorkarounds.h
5 GrDriverBugWorkarounds();
6 explicit GrDriverBugWorkarounds(const std::vector<int32_t>& workarounds);
7 + GrDriverBugWorkarounds(GrDriverBugWorkarounds const &) = default;
9 GrDriverBugWorkarounds& operator=(const GrDriverBugWorkarounds&) = default;
11 --- tools/sk_app/VulkanWindowContext.h
12 +++ tools/sk_app/VulkanWindowContext.h
15 GrContext* getGrContext() { return shared ? shared->fContext.get() : nullptr; }
16 ~SharedGrContext() { shared.reset(); checkDestroyShared(); }
17 + SharedGrContext(SharedGrContext const &) = default;
18 + SharedGrContext & operator =(SharedGrContext const &) = default;
19 bool operator!() const { return !shared; }
20 void reset() { shared.reset(); }