File tree Expand file tree Collapse file tree
ImGuiColorTextEdit/teavm/src/main/java/imgui/example/textedit
web-gl/src/main/java/imgui/example/basic
web-wgpu/src/main/java/imgui/example/basic
imgui-node-editor/teavm/src/main/java/imgui/example/nodeeditor
imlayout/teavm/src/main/java/imgui/example/imlayout Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ object LibExt {
1515 const val javaFFMTarget = " 25"
1616
1717 const val gdxVersion = " 1.14.0"
18- const val gdxTeaVMVersion = " 1.5.6 "
18+ const val gdxTeaVMVersion = " -SNAPSHOT "
1919 const val jParserVersion = " 1.1.4"
2020
21- const val gdxWebGPUGroup = " io.github.monstroussoftware.gdx-webgpu"
22- // const val gdxWebGPUGroup = "com.github.xpenatan.gdx-webgpu"
23- const val gdxWebGPUVersion = " -SNAPSHOT"
21+ // const val gdxWebGPUGroup = "io.github.monstroussoftware.gdx-webgpu"
22+ const val gdxWebGPUGroup = " com.github.xpenatan.gdx-webgpu"
23+ const val gdxWebGPUVersion = " dev -SNAPSHOT"
2424
2525 const val jUnitVersion = " 4.12"
2626
Original file line number Diff line number Diff line change 11package imgui .example .textedit ;
22
33import com .github .xpenatan .gdx .teavm .backends .shared .config .AssetFileHandle ;
4- import com .github .xpenatan .gdx .teavm .backends .shared .config .compiler . TeaCompiler ;
4+ import com .github .xpenatan .gdx .teavm .backends .shared .config .builder . TeaBuilder ;
55import com .github .xpenatan .gdx .teavm .backends .web .config .backend .WebBackend ;
66import java .io .File ;
77import java .io .IOException ;
@@ -11,7 +11,7 @@ public class Build {
1111
1212 public static void main (String [] args ) throws IOException {
1313 AssetFileHandle assetsPath = new AssetFileHandle ("../assets" );
14- new TeaCompiler (new WebBackend ()
14+ new TeaBuilder (new WebBackend ()
1515 .setStartJettyAfterBuild (true )
1616 .setWebAssembly (true ))
1717 .addAssets (assetsPath )
Original file line number Diff line number Diff line change 11package imgui .example .basic ;
22
33import com .github .xpenatan .gdx .teavm .backends .shared .config .AssetFileHandle ;
4- import com .github .xpenatan .gdx .teavm .backends .shared .config .compiler . TeaCompiler ;
4+ import com .github .xpenatan .gdx .teavm .backends .shared .config .builder . TeaBuilder ;
55import com .github .xpenatan .gdx .teavm .backends .web .config .backend .WebBackend ;
66import java .io .File ;
77import java .io .IOException ;
@@ -11,7 +11,7 @@ public class Build {
1111
1212 public static void main (String [] args ) throws IOException {
1313 AssetFileHandle assetsPath = new AssetFileHandle ("../assets" );
14- new TeaCompiler (new WebBackend ()
14+ new TeaBuilder (new WebBackend ()
1515 .setStartJettyAfterBuild (true )
1616 .setWebAssembly (true ))
1717 .addAssets (assetsPath )
Original file line number Diff line number Diff line change 11package imgui .example .basic ;
22
33import com .github .xpenatan .gdx .teavm .backends .shared .config .AssetFileHandle ;
4- import com .github .xpenatan .gdx .teavm .backends .shared .config .compiler . TeaCompiler ;
4+ import com .github .xpenatan .gdx .teavm .backends .shared .config .builder . TeaBuilder ;
55import com .github .xpenatan .gdx .teavm .backends .web .config .backend .WebBackend ;
66import java .io .File ;
77import java .io .IOException ;
@@ -11,7 +11,7 @@ public class Build {
1111
1212 public static void main (String [] args ) throws IOException {
1313 AssetFileHandle assetsPath = new AssetFileHandle ("../assets" );
14- new TeaCompiler (new WebBackend ()
14+ new TeaBuilder (new WebBackend ()
1515 .setStartJettyAfterBuild (true )
1616 .setWebAssembly (true ))
1717 .addAssets (assetsPath )
Original file line number Diff line number Diff line change 11package imgui .example .nodeeditor ;
22
33import com .github .xpenatan .gdx .teavm .backends .shared .config .AssetFileHandle ;
4- import com .github .xpenatan .gdx .teavm .backends .shared .config .compiler . TeaCompiler ;
4+ import com .github .xpenatan .gdx .teavm .backends .shared .config .builder . TeaBuilder ;
55import com .github .xpenatan .gdx .teavm .backends .web .config .backend .WebBackend ;
66import java .io .File ;
77import java .io .IOException ;
@@ -11,7 +11,7 @@ public class Build {
1111
1212 public static void main (String [] args ) throws IOException {
1313 AssetFileHandle assetsPath = new AssetFileHandle ("../assets" );
14- new TeaCompiler (new WebBackend ()
14+ new TeaBuilder (new WebBackend ()
1515 .setStartJettyAfterBuild (true )
1616 .setWebAssembly (true ))
1717 .addAssets (assetsPath )
Original file line number Diff line number Diff line change 11package imgui .example .imlayout ;
22
33import com .github .xpenatan .gdx .teavm .backends .shared .config .AssetFileHandle ;
4- import com .github .xpenatan .gdx .teavm .backends .shared .config .compiler . TeaCompiler ;
4+ import com .github .xpenatan .gdx .teavm .backends .shared .config .builder . TeaBuilder ;
55import com .github .xpenatan .gdx .teavm .backends .web .config .backend .WebBackend ;
66import java .io .File ;
77import java .io .IOException ;
@@ -11,7 +11,7 @@ public class Build {
1111
1212 public static void main (String [] args ) throws IOException {
1313 AssetFileHandle assetsPath = new AssetFileHandle ("../assets" );
14- new TeaCompiler (new WebBackend ()
14+ new TeaBuilder (new WebBackend ()
1515 .setStartJettyAfterBuild (true )
1616 .setWebAssembly (true ))
1717 .addAssets (assetsPath )
You can’t perform that action at this time.
0 commit comments