Andreas Monitzer

Results 112 comments of Andreas Monitzer

Same with `buffer_data_with_array_buffer_view`. In WebGL, you can avoid copying an array buffer to JavaScript memory by creating an array buffer view into the WASM memory and then passing that object...

Take a look at the [official web-sys example for WebGL](https://rustwasm.github.io/wasm-bindgen/examples/webgl.html) on how Vertex Array Buffers can be created without copying the data. If you pass a slice, I think it'll...

Yeah, if glow could abstract the whole array buffer view-hack away from the application code, that would be the best solution.

Yes, that would be great! Ideally, `line_height_adjust` would be a scaling factor to the regular line height of the chosen font. So, 1 would be the default, 2 would be...

As someone who wants to integrate the code generated by cargo-web into an existing javascript build system, I'd like to keep the option to not have it minified, because minification...

I‘m using UglifyJS. The program that doesn’t work with minified code is babel.

Yeah, they'd just tell me to run uglifyjs after babel. It's not Rust, the JavaScript community does not believe in rock solid code that can handle anything.

The reason is that I want to use d3.js for generating the HTML on the page as well, not HTMLBars. The component I put into the data-visual already gets the...

> The events example no longer builds because of the removal of `create_event_context` I just looked into it a bit, and I'm not sure how this example is even supposed...

> If you can also provide an example using the new render api wrapper, that would be very helpful for a newcomer like me :D. Well, it was way more...