Zimon Tai

Results 11 issues of Zimon Tai

I failed to compile notan on macos due to glsl-to-spirv build script failure. As it is already deprecated, have you considered to replace it with `shaderc-rs`, which is recommended by...

enhancement

This is a follow-up of #62 . I think currently most of the utility methods in `utils` are not need in production. They are just adding up binary / wasm...

Currently I must modify source code to add support for a custom op. This is quite inconvenient. I think the large `match` in compile.rs could be abstracted into a trait,...

enhancement

This allows more woff/woff2 file to be recognized. fixes #67

Added in 1.0.54.0 Another question: Would `VK_KHR_external_fence_fd` extension allow us to bind a `Fence` to a POSIX fd, and connect vulkano with mio/tokio/futures?

type: enhancement
status: workable

fixes #101 #115 The idea is to add a new `ResvgBuilder` type, which does all the pre-resvg resolving stuff. Behind the scene it uses the xml reader which `resvg` uses...

I think tagged enums should also allow `#[serde(other)]` to mark a enum field as default. This will make the tagged enums much more useful. Or is there already a way...

docs

related #120. I think based on the [spec](https://learn.microsoft.com/en-us/typography/opentype/spec/fvar#fvar-header), there are instance records in `fvar`. But currently ttf-parser only parses axis record?

If my `process.env.NODE_ENV` is `development`, loading this module using `babel-loader` will make `__DEV__` in `index.jsx` to `true`, and it enables every `this.shoud.xxx` check in the source. Is there any way...

in `client.js`, `Client.prototype.onMessage`, the argument is `e`, so this method would be: ``` js Client.prototype.onMessage = function (e) { protocol.apply(this, [debug, this.socket, e.data]); }; ``` Maybe I missed something?