Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(265)

Unified Diff: gpu/vulkan/vulkan_render_pass.h

Issue 1919443002: Added copy/move constructors of complex RenderPass types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use default Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gpu/vulkan/vulkan_render_pass.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/vulkan/vulkan_render_pass.h
diff --git a/gpu/vulkan/vulkan_render_pass.h b/gpu/vulkan/vulkan_render_pass.h
index 326e99b235cfe77a1fccf6a74434248fb924078a..0c283dc21db50f500d20e15be47e3c208ecda89a 100644
--- a/gpu/vulkan/vulkan_render_pass.h
+++ b/gpu/vulkan/vulkan_render_pass.h
@@ -63,6 +63,8 @@ class VULKAN_EXPORT VulkanRenderPass {
struct SubpassData {
SubpassData();
+ SubpassData(const SubpassData& data);
+ SubpassData(SubpassData&& data);
~SubpassData();
std::vector<SubpassAttachment> subpass_attachments;
@@ -72,6 +74,8 @@ class VULKAN_EXPORT VulkanRenderPass {
struct RenderPassData {
RenderPassData();
+ RenderPassData(const RenderPassData& data);
+ RenderPassData(RenderPassData&& data);
~RenderPassData();
std::vector<AttachmentData> attachments;
« no previous file with comments | « no previous file | gpu/vulkan/vulkan_render_pass.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698