( easing: ManagedWindowAnimationEasing | undefined, )
| 2234 | processActions, |
| 2235 | }); |
| 2236 | } |
| 2237 | } |
| 2238 | } |
| 2239 | } catch (error) { |
| 2240 | await writeResponse(embeddedBridge, { |
| 2241 | requestId: request.requestId, |
| 2242 | ok: false, |
| 2243 | kind: request.kind, |
| 2244 | error: |
| 2245 | error instanceof Error |
| 2246 | ? (error.stack ?? error.message) |
| 2247 | : String(error), |
| 2248 | displayConfig: pendingDisplayConfigPayload(), |
| 2249 | workspaceConfig: pendingWorkspaceConfigPayload(), |
| 2250 | }); |
| 2251 | } |
| 2252 | } |
| 2253 | } |
| 2254 | |
| 2255 | function evaluateCached( |
| 2256 | composition: WindowCompositionFunction, |
| 2257 | events: CompositorEventController, |
| 2258 | effectConfig: RuntimeEffectConfig, |
| 2259 | windowId: string, |
| 2260 | snapshot?: WaylandWindowSnapshot, |
| 2261 | forceFullReevaluation = false, |
| 2262 | ): { |
| 2263 | serialized?: unknown; |
| 2264 | treeUpdate: "full" | "patches" | "uniforms" | "none"; |
no outgoing calls
no test coverage detected