Nicola Lucas Büscher

Results 28 comments of Nicola Lucas Büscher

So with Oracle seemingly having archived jdk8 (you have to log in to an Oracle account to download it now), how can a Kotlin programmer get involved in making this...

Just finished porting my somewhat large (multi-module gradle) project to jdk11+. Some points I ran across: 1. It is much much easier to create a non-modular application than to create...

I'm currently using the 2.0.0-SNAPSHOT version without issue.

By not-so-firendly low-level function do you mean the version of `glGetString` that returns a `CPointer?`?

I created some convenience functions for my own GL bindings and what I've done for primitive arrays for functions like glCreateBuffers is the following: ```kotlin fun glCreateBuffers(n: Int): UIntArray =...

Are there any plans to use the Enums generated from the GL registry in the gl functions?

The error occurs at runtime, if that helps. Currently I only use the cinterop functions because there's still no reasonable way to get a ByteArray from a kotlin native function....

What was the reason for writing a custom VirtualStack implementation rather than using Native's Arena class and/or memScoped function?

That seems to still be the case. Thanks for the explanation.

Should there be in-place-modifying variants of `abs`, `clamp`, etc for Mutable Vector types? Intentionally creating a function with side-effects like that feels dirty, but it might be important? Perhaps implemented...