@webref/idl 3.61.1 → 3.61.2
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/fedcm.idl +3 -0
- package/package.json +1 -1
- package/webaudio.idl +2 -1
- package/webgpu.idl +6 -2
- package/webxr.idl +2 -0
package/fedcm.idl
CHANGED
|
@@ -12,6 +12,7 @@ interface IdentityCredential : Credential {
|
|
|
12
12
|
static Promise<undefined> disconnect(IdentityCredentialDisconnectOptions options);
|
|
13
13
|
readonly attribute USVString? token;
|
|
14
14
|
readonly attribute boolean isAutoSelected;
|
|
15
|
+
readonly attribute USVString configURL;
|
|
15
16
|
};
|
|
16
17
|
|
|
17
18
|
dictionary DisconnectedAccount {
|
|
@@ -78,6 +79,7 @@ dictionary IdentityProviderAPIConfig {
|
|
|
78
79
|
required USVString login_url;
|
|
79
80
|
USVString disconnect_endpoint;
|
|
80
81
|
IdentityProviderBranding branding;
|
|
82
|
+
USVString account_label;
|
|
81
83
|
};
|
|
82
84
|
|
|
83
85
|
dictionary IdentityProviderAccount {
|
|
@@ -89,6 +91,7 @@ dictionary IdentityProviderAccount {
|
|
|
89
91
|
sequence<USVString> approved_clients;
|
|
90
92
|
sequence<DOMString> login_hints;
|
|
91
93
|
sequence<DOMString> domain_hints;
|
|
94
|
+
sequence<DOMString> label_hints;
|
|
92
95
|
};
|
|
93
96
|
dictionary IdentityProviderAccountList {
|
|
94
97
|
sequence<IdentityProviderAccount> accounts;
|
package/package.json
CHANGED
package/webaudio.idl
CHANGED
package/webgpu.idl
CHANGED
|
@@ -64,6 +64,7 @@ interface GPUAdapterInfo {
|
|
|
64
64
|
readonly attribute DOMString description;
|
|
65
65
|
readonly attribute unsigned long subgroupMinSize;
|
|
66
66
|
readonly attribute unsigned long subgroupMaxSize;
|
|
67
|
+
readonly attribute boolean isFallbackAdapter;
|
|
67
68
|
};
|
|
68
69
|
|
|
69
70
|
interface mixin NavigatorGPU {
|
|
@@ -96,7 +97,6 @@ interface GPUAdapter {
|
|
|
96
97
|
[SameObject] readonly attribute GPUSupportedFeatures features;
|
|
97
98
|
[SameObject] readonly attribute GPUSupportedLimits limits;
|
|
98
99
|
[SameObject] readonly attribute GPUAdapterInfo info;
|
|
99
|
-
readonly attribute boolean isFallbackAdapter;
|
|
100
100
|
|
|
101
101
|
Promise<GPUDevice> requestDevice(optional GPUDeviceDescriptor descriptor = {});
|
|
102
102
|
};
|
|
@@ -936,12 +936,16 @@ interface GPUCommandEncoder {
|
|
|
936
936
|
GPURenderPassEncoder beginRenderPass(GPURenderPassDescriptor descriptor);
|
|
937
937
|
GPUComputePassEncoder beginComputePass(optional GPUComputePassDescriptor descriptor = {});
|
|
938
938
|
|
|
939
|
+
undefined copyBufferToBuffer(
|
|
940
|
+
GPUBuffer source,
|
|
941
|
+
GPUBuffer destination,
|
|
942
|
+
optional GPUSize64 size);
|
|
939
943
|
undefined copyBufferToBuffer(
|
|
940
944
|
GPUBuffer source,
|
|
941
945
|
GPUSize64 sourceOffset,
|
|
942
946
|
GPUBuffer destination,
|
|
943
947
|
GPUSize64 destinationOffset,
|
|
944
|
-
GPUSize64 size);
|
|
948
|
+
optional GPUSize64 size);
|
|
945
949
|
|
|
946
950
|
undefined copyBufferToTexture(
|
|
947
951
|
GPUTexelCopyBufferInfo source,
|
package/webxr.idl
CHANGED
|
@@ -70,6 +70,7 @@ enum XRVisibilityState {
|
|
|
70
70
|
dictionary XRRenderStateInit {
|
|
71
71
|
double depthNear;
|
|
72
72
|
double depthFar;
|
|
73
|
+
boolean passthroughFullyObscured;
|
|
73
74
|
double inlineVerticalFieldOfView;
|
|
74
75
|
XRWebGLLayer? baseLayer;
|
|
75
76
|
sequence<XRLayer>? layers;
|
|
@@ -78,6 +79,7 @@ dictionary XRRenderStateInit {
|
|
|
78
79
|
[SecureContext, Exposed=Window] interface XRRenderState {
|
|
79
80
|
readonly attribute double depthNear;
|
|
80
81
|
readonly attribute double depthFar;
|
|
82
|
+
readonly attribute boolean? passthroughFullyObscured;
|
|
81
83
|
readonly attribute double? inlineVerticalFieldOfView;
|
|
82
84
|
readonly attribute XRWebGLLayer? baseLayer;
|
|
83
85
|
};
|