A LibGDX cross platform video rendering extension
This repo is a fork of an old project with an aim on adapting it to the modern LibGDX usage. As in the original library, the only native backends supported are Desktop (LWJGL3) and Android (min SDK version is 17). It's still under active development and not yet published anywhere as maven artifacts, however you can download beta jars from release section.
Also you can assemble the latest version of the library locally:
./gradlew installAll
repositories {
mavenLocal()
}
// Core module
dependencies {
api "com.crashinvaders.gdxvideo:gdx-video-core:0.2.0"
}
// Desktop (LWJGL3) module
dependencies {
api "com.crashinvaders.gdxvideo:gdx-video-desktop:0.2.0"
}
// Android module
dependencies {
api "com.crashinvaders.gdxvideo:gdx-video-android:0.2.0"
}