BcnRust / talks

Talk requests and proposals for the new BcnRust meetup group
Mozilla Public License 2.0
13 stars 0 forks source link

Rust in iOS and Android #6

Closed robertohuertasm closed 11 months ago

robertohuertasm commented 5 years ago

Title / Título

Rust in iOS and Android

Details / Detalles

An introduction to learn how to use Rust in iOS and Android.

Speaker info / Información sobre el ponente

Roberto Huertas @robertohuertasm

Level / Nivel

Duration / Duración

40 mins

carlosb1 commented 5 years ago

@robertohuertasm I was checking code, and it doesn't exist any "mature" wrapper android-rust. It means, for any possible use case (for example copy android camera frames to jni and render), it is necessary to do it yourself in C++. https://github.com/rust-windowing/android-rs-glue <- It seems to have only operations to load assets and not more... https://github.com/dobkeratops/android_rust_gl <- It created a c++ endpoint to call opengl operations... What does it mean? Currently, for any tutorial about this topic, It will be necessary to do "painful" code in C++ (if my presumptions are correct)

carlosb1 commented 5 years ago

https://github.com/carlosb1/examples-rust/tree/master/android_example <- I started an example with jni to pass parameters