mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix(cli/dts/webgpu): make GPUBlendComponent properties optional (#13574)
This commit is contained in:
parent
9d714579b2
commit
6ebb3e5623
1 changed files with 3 additions and 3 deletions
6
cli/dts/lib.deno_webgpu.d.ts
vendored
6
cli/dts/lib.deno_webgpu.d.ts
vendored
|
@ -596,9 +596,9 @@ declare class GPUColorWrite {
|
|||
}
|
||||
|
||||
declare interface GPUBlendComponent {
|
||||
operation: GPUBlendOperation;
|
||||
srcFactor: GPUBlendFactor;
|
||||
dstFactor: GPUBlendFactor;
|
||||
operation?: GPUBlendOperation;
|
||||
srcFactor?: GPUBlendFactor;
|
||||
dstFactor?: GPUBlendFactor;
|
||||
}
|
||||
|
||||
declare type GPUBlendFactor =
|
||||
|
|
Loading…
Reference in a new issue