({ data, width, height })
| 230 | } |
| 231 | |
| 232 | setIcon({ data, width, height }) { |
| 233 | Deno.core.opSync("op_window_set_window_icon", [this.#rid, width, height], data); |
| 234 | } |
| 235 | |
| 236 | createSurface(device) { |
| 237 | const rid = Deno.core.opSync("op_webgpu_create_surface", { windowRid: this.#rid }); |
nothing calls this directly
no outgoing calls
no test coverage detected