mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -05:00
fix(cli/dts/webgpu): make GPUBlendComponent properties optional (#13574)
This commit is contained in:
parent
26f5c223df
commit
3a5ddeb03f
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 {
|
declare interface GPUBlendComponent {
|
||||||
operation: GPUBlendOperation;
|
operation?: GPUBlendOperation;
|
||||||
srcFactor: GPUBlendFactor;
|
srcFactor?: GPUBlendFactor;
|
||||||
dstFactor: GPUBlendFactor;
|
dstFactor?: GPUBlendFactor;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare type GPUBlendFactor =
|
declare type GPUBlendFactor =
|
||||||
|
|
Loading…
Reference in a new issue