summaryrefslogtreecommitdiff
path: root/chromium/third_party/dawn/src/utils/ComboRenderPipelineDescriptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/dawn/src/utils/ComboRenderPipelineDescriptor.h')
-rw-r--r--chromium/third_party/dawn/src/utils/ComboRenderPipelineDescriptor.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/chromium/third_party/dawn/src/utils/ComboRenderPipelineDescriptor.h b/chromium/third_party/dawn/src/utils/ComboRenderPipelineDescriptor.h
index 3fa120210d9..b10f826cb20 100644
--- a/chromium/third_party/dawn/src/utils/ComboRenderPipelineDescriptor.h
+++ b/chromium/third_party/dawn/src/utils/ComboRenderPipelineDescriptor.h
@@ -30,14 +30,11 @@ namespace utils {
dawn::PipelineStageDescriptor cVertexStage;
dawn::PipelineStageDescriptor cFragmentStage;
- dawn::AttachmentsStateDescriptor cAttachmentsState;
- std::array<dawn::AttachmentDescriptor*, kMaxColorAttachments> cColorAttachments;
- dawn::AttachmentDescriptor cDepthStencilAttachment;
- std::array<dawn::BlendStateDescriptor, kMaxColorAttachments> cBlendStates;
+ std::array<dawn::ColorStateDescriptor*, kMaxColorAttachments> cColorStates;
dawn::DepthStencilStateDescriptor cDepthStencilState;
private:
- dawn::AttachmentDescriptor colorAttachments[kMaxColorAttachments];
+ dawn::ColorStateDescriptor mColorStates[kMaxColorAttachments];
};
} // namespace utils