Egloo
Menu toggle
latest: v0.6.1 GitHub

New versions are released through GitHub, so the reference page is the GitHub Releases page.

Starting from v0.3.1, you can support development through the GitHub Sponsors program. Companies can share a tiny part of their revenue and get private support hours in return. Thanks!

v0.6.1

  • Upgrade to Kotlin 1.5.20 (#37)
  • Enable snapshot releases (#37)

v0.6.0

  • Upgrade to Kotlin 1.4.31 (#33)
  • Publish to Maven Central (#33)

v0.5.4

  • Upgrade to Kotlin 1.4.21 (#31)

v0.5.3

  • New: Upgrade to Kotlin 1.4 ([#27][27])
  • New: Add a few getters to GlTexture and GlSharedStorageBuffer ([#27][27])

https://github.com/natario1/Egloo/compare/v0.5.2...v0.5.3

v0.5.2

  • Fix: fixed a bug with the Android/JVM implementation (#23)

https://github.com/natario1/Egloo/compare/v0.5.1...v0.5.2

v0.5.1

Native targets are now published to JCenter and can be added as dependencies from Kotlin Multiplatform projects (#22). You can add the granular dependencies:

implementation("com.otaliastudios.opengl:egloo-android:0.5.1") // android
implementation("com.otaliastudios.opengl:egloo-androidnativex86:0.5.1") // android native
implementation("com.otaliastudios.opengl:egloo-androidnativex64:0.5.1") // android native
implementation("com.otaliastudios.opengl:egloo-androidnativearm32:0.5.1") // android native
implementation("com.otaliastudios.opengl:egloo-androidnativearm64:0.5.1") // android native

Or simply add the common dependency for your Kotlin Multiplatform common source set:

// This will include the correct artifact into your targets
implementation("com.otaliastudios.opengl:egloo-multiplatform:0.5.1")

https://github.com/natario1/Egloo/compare/v0.5.0...v0.5.1

v0.5.0

This release adds support for native targets. We provide an implementation for Android native libraries, but other targets like iOS can probably be added easily. These artifacts are not currently published but can be built using ./gradlew :library:publishLocal (#20).

Other changes:

  • New: EglCore.makeCurrent() to make the context current with no surfaces (#18)
  • New: GlBuffer base class, and GlShaderStorageBuffer implementation for SSBOs
  • New: GlShader abstraction for GlPrograms

https://github.com/natario1/Egloo/compare/v0.4.0...v0.5.0

v0.4.0

  • New: GlTexture class to create textures (#14)
  • New: GlFramebuffer class to create framebuffers (#14)
  • New: Gl2dMesh drawable (#14)

https://github.com/natario1/Egloo/compare/v0.3.1...v0.4.0

v0.3.1

First versioned release.