-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
nshtengauer
committed
Dec 14, 2024
1 parent
b254b51
commit 7d74893
Showing
16 changed files
with
91 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
compileKotlin { | ||
destinationDirectory = compileJava.destinationDirectory | ||
} | ||
|
||
jar { | ||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE | ||
} | ||
|
||
tasks.withType(Javadoc).configureEach { | ||
enabled = false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module openglfx { | ||
|
||
requires transitive kotlin.stdlib; | ||
requires transitive grapl.gl; | ||
|
||
requires javafx.base; | ||
requires javafx.graphics; | ||
|
||
exports com.huskerdev.openglfx; | ||
exports com.huskerdev.openglfx.canvas; | ||
exports com.huskerdev.openglfx.canvas.events; | ||
exports com.huskerdev.openglfx.effects; | ||
exports com.huskerdev.openglfx.image; | ||
exports com.huskerdev.openglfx.internal; | ||
exports com.huskerdev.openglfx.internal.canvas; | ||
exports com.huskerdev.openglfx.internal.platforms; | ||
exports com.huskerdev.openglfx.internal.platforms.win; | ||
exports com.huskerdev.openglfx.internal.platforms.macos; | ||
exports com.huskerdev.openglfx.internal.shaders; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module openglfx.jogl { | ||
|
||
requires transitive openglfx; | ||
|
||
exports com.huskerdev.openglfx.jogl; | ||
exports com.huskerdev.openglfx.jogl.events; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module openglfx.libgdx { | ||
|
||
requires transitive openglfx; | ||
|
||
requires org.lwjgl; | ||
requires org.lwjgl.opengl; | ||
|
||
exports com.huskerdev.openglfx.libgdx; | ||
exports com.huskerdev.openglfx.libgdx.events; | ||
exports com.huskerdev.openglfx.libgdx.internal; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module openglfx.lwjgl { | ||
|
||
requires transitive openglfx; | ||
|
||
requires org.lwjgl; | ||
requires org.lwjgl.opengl; | ||
|
||
exports com.huskerdev.openglfx.lwjgl; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
modules/lwjgl2/kotlin/com/huskerdev/openglfx/lwjgl2/LWJGL2Executor.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
include ( | ||
'modules:bom', | ||
'modules:core', | ||
'modules:core:native', | ||
'modules:jogl', | ||
|