Home
last modified time | relevance | path

Searched refs:MakeWebGLCanvasSurface (Results 1 – 21 of 21) sorted by relevance

/third_party/flutter/skia/experimental/wasm-skp-debugger/
Dgpu.js47 DebuggerView.MakeWebGLCanvasSurface = function(canvas) { class in DebuggerView
73 DebuggerView.MakeCanvasSurface = DebuggerView.MakeWebGLCanvasSurface;
Dexterns.js10 MakeWebGLCanvasSurface: function() {}, method
/third_party/skia/experimental/wasm-skp-debugger/
Dgpu.js47 DebuggerView.MakeWebGLCanvasSurface = function(canvas) { class in DebuggerView
73 DebuggerView.MakeCanvasSurface = DebuggerView.MakeWebGLCanvasSurface;
Dexterns.js8 MakeWebGLCanvasSurface: function() {}, method
/third_party/flutter/skia/modules/canvaskit/
Dgpu.js55 CanvasKit.MakeWebGLCanvasSurface = function(arg, width, height) { class in CanvasKit
102 CanvasKit.MakeCanvasSurface = CanvasKit.MakeWebGLCanvasSurface;
DCHANGELOG.md73 - `CanvasKit.MakeWebGLCanvasSurface` no longer takes a webgl context as a first arg, only a
113 - `MakeWebGLCanvasSurface` can now take a WebGL context as an integer and use it directly.
Dexterns.js57 MakeWebGLCanvasSurface: function() {}, method
/third_party/skia/experimental/skottiekit/
Dgpu.js59 SkottieKit.MakeWebGLCanvasSurface = function(arg, width, height) { class in SkottieKit
109 SkottieKit.MakeCanvasSurface = SkottieKit.MakeWebGLCanvasSurface;
Dexterns.js37 MakeWebGLCanvasSurface: function() {}, method
/third_party/skia/demos.skia.org/demos/web_worker/
Dworker.js21 const surface = CanvasKit.MakeWebGLCanvasSurface(offscreenCanvas, null);
Dmain.js20 const surface = CanvasKit.MakeWebGLCanvasSurface(onscreenCanvas, null);
/third_party/skia/modules/canvaskit/
Dgpu.js117 CanvasKit.MakeWebGLCanvasSurface = function(idOrElement, colorSpace, attrs) { class in CanvasKit
155 CanvasKit.MakeCanvasSurface = CanvasKit.MakeWebGLCanvasSurface;
Dexterns.js58 MakeWebGLCanvasSurface: function() {}, method
DCHANGELOG.md473 - `MakeWebGLCanvasSurface` can now accept an optional dictionary of WebGL context attributes that
839 - `CanvasKit.MakeWebGLCanvasSurface` no longer takes a webgl context as a first arg, only a
879 - `MakeWebGLCanvasSurface` can now take a WebGL context as an integer and use it directly.
/third_party/skia/experimental/wasm-skp-debugger/tests/
Dstartup.spec.js44 const surface = Debugger.MakeWebGLCanvasSurface(
Dmskp_playback.spec.js38 const surface = Debugger.MakeWebGLCanvasSurface(canvasElement);
/third_party/skia/demos.skia.org/demos/image_decode_web_worker/
Dmain.js18 const surface = CanvasKit.MakeWebGLCanvasSurface('main-thread-canvas', null);
/third_party/skia/tools/perf-canvaskit-puppeteer/
Dbenchmark.js6 …surface = CanvasKit.MakeWebGLCanvasSurface('anim', null /* colorspace */, {'majorVersion': webglve…
/third_party/skia/demos.skia.org/demos/path_performance/
Dshared.js110 this.surface = CanvasKit.MakeWebGLCanvasSurface(offscreenCanvas, null);
/third_party/skia/modules/canvaskit/npm_build/types/
Dcanvaskit-wasm-tests.ts832 const surfaceFive = CK.MakeWebGLCanvasSurface(canvasEl, // $ExpectType Surface
837 const surfaceSix = CK.MakeWebGLCanvasSurface('my_canvas', CK.ColorSpace.DISPLAY_P3, {
Dindex.d.ts217 MakeWebGLCanvasSurface(canvas: HTMLCanvasElement | string, colorSpace?: ColorSpace, method