Skip to content

Commit e74741d

Browse files
Add TRANSIENT_ATTACHMENT GPUTextureUsage (#199)
This PR adds the `TRANSIENT_ATTACHMENT` GPUTextureUsage added to the spec in gpuweb/gpuweb#5450
1 parent bf308cc commit e74741d

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

dist/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3420,6 +3420,7 @@ interface GPUTextureUsage {
34203420
readonly TEXTURE_BINDING: GPUFlagsConstant;
34213421
readonly STORAGE_BINDING: GPUFlagsConstant;
34223422
readonly RENDER_ATTACHMENT: GPUFlagsConstant;
3423+
readonly TRANSIENT_ATTACHMENT: GPUFlagsConstant;
34233424
}
34243425

34253426
declare var GPUTextureUsage: GPUTextureUsage;

generated/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3096,6 +3096,7 @@ interface GPUTextureUsage {
30963096
readonly TEXTURE_BINDING: GPUFlagsConstant;
30973097
readonly STORAGE_BINDING: GPUFlagsConstant;
30983098
readonly RENDER_ATTACHMENT: GPUFlagsConstant;
3099+
readonly TRANSIENT_ATTACHMENT: GPUFlagsConstant;
30993100
}
31003101

31013102
declare var GPUTextureUsage: GPUTextureUsage;

0 commit comments

Comments
 (0)