Giuseppe Barbieri

Results 251 comments of Giuseppe Barbieri

Also, in case you dont have it yet, you need to add jitpack to your repositories: ``` repositories { ... maven { url 'https://jitpack.io' } // as last } ```

@kaphula (Sorry, I missed your reply) @ushort Your inputs are quite valuables, I'll work on that asap However since I lack time, the documentation is, of course and unfortunately, the...

Yeah, I do understand the frustation and for this I'm sorry However, is the project open? Which gl calls are you referring to? The lwjgl vanilla or the confortable ones...

The fact is that `gl` object in gli kind of simulate the namespace in C, all the enums regarding opengl are available through that.. Would you have any suggestion for...

do you guys prefer explicit `glEnablei` instead of simply `glEnable(index: Int)`? @Wasabi375 following that style proposal then the whole shall be ``` fun isEnabled(index: Int): Boolean = GL30C.glIsEnabledi(GL30C.GL_BLEND, index) fun...

No wait, I think you misunderstood. We have here `glIsEnabled`, `glEnable` and `glDisable` and their indexed counterparts with the `i` postfix. Shall we keep the postfix or just drop it...

There are a couple of consideations to make: - we shall identify the target this library is meant for. I always assumed one should have already a (at least) basic...

Ok, then we leave like [it is](https://github.com/kotlin-graphics/gln/blob/27384d37c81b1d2e648c5caedd835b58d313dd35/src/main/kotlin/gln/gl30i.kt#L1598-L1632) for the moment

Another thing. Given that all the enable/disable capabilities are also available through [`var`s](https://github.com/kotlin-graphics/gln/blob/27384d37c81b1d2e648c5caedd835b58d313dd35/src/main/kotlin/gln/glEnable.kt), ie: `gl.blend = true` We might also extend it for those two indexed capabilities.. proposals: - `gl.drawBuffer[0].blend...

> Let's focus on gradle changes in this PR. Would you please remove these Kotlin tests? Absolutely, sorry, I already meant to do that, but I forgot