Skip to content

Commit

Permalink
Added GLProfile setting in LibGDXCanvas.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
nshtengauer committed Dec 18, 2024
1 parent 1b64a51 commit bb47f10
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
projectName=openglfx
version=4.1.6
version=4.1.7

kotlinVersion=2.0.20
graplVersion=2.3.2
Expand Down
2 changes: 1 addition & 1 deletion modules/core/kotlin/com/huskerdev/openglfx/GLFXInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package com.huskerdev.openglfx
// Generated with gradle
class GLFXInfo {
companion object {
const val VERSION = "4.1.6"
const val VERSION = "4.1.7"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import kotlin.Boolean
class LibGDXCanvas(
val adapter: ApplicationAdapter,
val configuration: OGLFXApplicationConfiguration = OGLFXApplicationConfiguration(),
profile: GLProfile = GLProfile.CORE,
flipY: Boolean = false,
msaa: Int = 0,
fps: Double = -1.0,
Expand All @@ -21,8 +22,7 @@ class LibGDXCanvas(
externalWindow: Boolean = false
): GLCanvas(
LIBGDX_MODULE,
GLProfile.CORE,
flipY, msaa, fps, glDebug, swapBuffers, interopType, externalWindow
profile, flipY, msaa, fps, glDebug, swapBuffers, interopType, externalWindow
) {
private val invokeLater = arrayListOf<Runnable>()
lateinit var application: Application
Expand Down

0 comments on commit bb47f10

Please sign in to comment.