项目作者: denosaurs

项目描述 :
🖼️ A deno module providing bindings for cross-platform windowing
高级语言: Rust
项目地址: git://github.com/denosaurs/pane.git
创建时间: 2020-11-16T01:41:11Z
项目社区:https://github.com/denosaurs/pane

开源协议:MIT License

下载


pane

Tags
deno doc
deno
release
rust
License
Dependencies
Dependency freshness


⚠️ Work in progress. Expect breaking changes.


Pane provides bindings for rust crate
winit in preparation for
webgpu integration in deno. This
module will provide a way of getting a
raw_window_handle resource
to provide to deno and interaction with the window. Pane no longer provides
bindings to pixels as a way of drawing
framebuffers onto the window, instead use WebGPU.

Example

Singe window

  1. import { PaneEventLoop, PaneWindow } from "https://deno.land/x/pane/mod.ts";
  2. const eventLoop = new PaneEventLoop();
  3. const _pane = new PaneWindow(eventLoop);
  4. setInterval(() => {
  5. for (const event of eventLoop.step()) {
  6. if (
  7. event.type === "windowEvent" &&
  8. event.value.event.type === "closeRequested"
  9. ) {
  10. Deno.exit();
  11. }
  12. }
  13. }, 0);

Multiple windows

  1. import { PaneEventLoop, PaneWindow } from "https://deno.land/x/pane/mod.ts";
  2. const eventLoop = new PaneEventLoop();
  3. const _pane1 = new PaneWindow(eventLoop);
  4. const _pane2 = new PaneWindow(eventLoop);
  5. setInterval(() => {
  6. for (const event of eventLoop.step()) {
  7. if (
  8. event.type === "windowEvent" &&
  9. event.value.event.type === "closeRequested"
  10. ) {
  11. Deno.exit();
  12. }
  13. }
  14. }, 0);

Maintainers

Permission Table

Permission Needed Required Reason
--allow-env yes For development variables.
--allow-net yes For getting the prebuild binaries.
--allow-read yes For reading the library.
--allow-plugin yes It’s a plugin, what do you expect.
--unstable yes It’s unstable because it is a plugin.

Other

Contribution

Pull request, issues and feedback are very welcome. Code style is formatted with
deno fmt and commit messages are done following Conventional Commits spec.

Licence

Copyright 2020-2021, the denosaurs team. All rights reserved. MIT license.