dobkeratops

Results 76 comments of dobkeratops

thanks for the reply ok so currentky I managed to get my code compiling with wasm32-unknown-emscrioten, which has the raw gl bindings i needed. however there is some doubt about...

: > * WebGL handles are typed while OpenGL handles are generally just integers, so something would need to convert between raw handles and the type checked abstractions. You could...

thanks for the info.. perhaps we could add a “unsafe fn handle_to_int(&self)”, “unsafe fn handle_from_int()->Self” in glow to enable writing the wrapper?” (it would need those for each resouce type?)...

right that could certanly be done (and the enum idea wouod allow glIsBuffer etc to work as a bonus; you could also expose it with a heavy warning that the...

^^^ i'm seeing the same thing , it wont build 32bit targets.. i have an old iPad2 i'd like to be able to test on. 32bit keeps devices out of...

ah i see now you can re-enable 32bit builds as you say (```cargo lipo --targets=aarch64-apple-ios,x86_64-apple-ios,armv7-apple-ios,armv7s-apple-ios```) #22 , I see it was disabled by default (to reduce build times..) I was...

interesting. I like your ideas of swapping < for > to mean 'down to; `..= ..< ..>` I'd be happy to use that. more brainstorming on this subject - Imagine...

similar to Rust ... this is nice; and makes the return value stand out more than in scala Rust uses a keyword 'fn' in front, which might seem extraneous -...

I'll see where I go with that.. for the minute I'm trying to appeal to anyone between the C++ & Rust communities so sticking with their syntax is good -...

yes - after using rust for a while ii'm keen on the 'func'/'fn' or 'let' keywords: the benefit is code is so easy to search. in rust, grep "(fn|struct|enum|type|trait)" finds...