@webref/idl 3.22.6 → 3.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webref/idl",
3
3
  "description": "Web IDL definitions of the web platform",
4
- "version": "3.22.6",
4
+ "version": "3.23.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/w3c/webref.git"
@@ -0,0 +1,13 @@
1
+ // GENERATED CONTENT - DO NOT EDIT
2
+ // Content was automatically extracted by Reffy into webref
3
+ // (https://github.com/w3c/webref)
4
+ // Source: FLAC WebCodecs Registration (https://w3c.github.io/webcodecs/flac_codec_registration.html)
5
+
6
+ partial dictionary AudioEncoderConfig {
7
+ FlacEncoderConfig flac;
8
+ };
9
+
10
+ dictionary FlacEncoderConfig {
11
+ [EnforceRange] unsigned long blockSize = 0;
12
+ [EnforceRange] unsigned long compressLevel = 5;
13
+ };
package/webgpu.idl CHANGED
@@ -106,7 +106,6 @@ enum GPUFeatureName {
106
106
  "timestamp-query",
107
107
  "indirect-first-instance",
108
108
  "shader-f16",
109
- "bgra8unorm-storage",
110
109
  "rg11b10ufloat-renderable"
111
110
  };
112
111
 
@@ -585,6 +584,21 @@ interface GPUCompilationInfo {
585
584
  readonly attribute FrozenArray<GPUCompilationMessage> messages;
586
585
  };
587
586
 
587
+ [Exposed=(Window, DedicatedWorker), SecureContext, Serializable]
588
+ interface GPUPipelineError : DOMException {
589
+ constructor(DOMString message, GPUPipelineErrorInit options);
590
+ readonly attribute GPUPipelineErrorReason reason;
591
+ };
592
+
593
+ dictionary GPUPipelineErrorInit {
594
+ required GPUPipelineErrorReason reason;
595
+ };
596
+
597
+ enum GPUPipelineErrorReason {
598
+ "validation",
599
+ "internal"
600
+ };
601
+
588
602
  enum GPUAutoLayoutMode {
589
603
  "auto"
590
604
  };