Commit 085b61f6 authored by François Beaufort's avatar François Beaufort Committed by Commit Bot

[WebGPU] Remove more unnecessary nullables

Following WebGPU spec change at https://github.com/gpuweb/gpuweb/pull/388,
this CL removes some unnecessary nullables, specifically in resolveTarget
from GPURenderPassColorAttachmentDescriptor.

Bug: 877147
Change-Id: Ib24b76ba65c22273b2d7bfef50ef8cc22e09daad
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1748666
Auto-Submit: François Beaufort <beaufort.francois@gmail.com>
Commit-Queue: Kai Ninomiya <kainino@chromium.org>
Reviewed-by: default avatarAustin Eng <enga@chromium.org>
Reviewed-by: default avatarKai Ninomiya <kainino@chromium.org>
Cr-Commit-Position: refs/heads/master@{#686217}
parent a8352e00
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
dictionary GPURenderPassColorAttachmentDescriptor { dictionary GPURenderPassColorAttachmentDescriptor {
required GPUTextureView attachment; required GPUTextureView attachment;
GPUTextureView? resolveTarget = null; GPUTextureView resolveTarget;
required (GPULoadOp or GPUColor) loadValue; required (GPULoadOp or GPUColor) loadValue;
required GPUStoreOp storeOp; required GPUStoreOp storeOp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment