feat(webkit): bump to r1564 (#9557)

This commit is contained in:
Yury Semikhatsky 2021-10-15 17:22:41 -07:00 committed by GitHub
parent a186278f2e
commit 3e054e9ad6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View file

@ -23,7 +23,7 @@
},
{
"name": "webkit",
"revision": "1562",
"revision": "1564",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446"

View file

@ -1196,6 +1196,7 @@ export module Protocol {
* Unique shader program identifier.
*/
export type ProgramId = string;
export type ColorSpace = "srgb"|"display-p3";
/**
* The type of rendering context backing the canvas element.
*/
@ -1210,6 +1211,14 @@ export module Protocol {
* WebGL, WebGL2, ImageBitmapRenderingContext
*/
alpha?: boolean;
/**
* 2D
*/
colorSpace?: ColorSpace;
/**
* 2D
*/
desynchronized?: boolean;
/**
* WebGL, WebGL2
*/