[FIX] arbo
This commit is contained in:
parent
3dd42d77ca
commit
fb8d53359e
30
pom.xml
30
pom.xml
@ -5,14 +5,27 @@
|
|||||||
<artifactId>gale</artifactId>
|
<artifactId>gale</artifactId>
|
||||||
<version>0.1.0</version>
|
<version>0.1.0</version>
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.version>3.13.0</maven.compiler.version>
|
|
||||||
<maven.compiler.source>24</maven.compiler.source>
|
|
||||||
<maven.compiler.target>24</maven.compiler.target>
|
|
||||||
<maven.dependency.version>3.1.1</maven.dependency.version>
|
|
||||||
<lwjgl.version>3.3.3</lwjgl.version>
|
<lwjgl.version>3.3.3</lwjgl.version>
|
||||||
<lwjgl3-awt.version>0.1.8</lwjgl3-awt.version>
|
<lwjgl3-awt.version>0.1.8</lwjgl3-awt.version>
|
||||||
<lwjgl.natives>natives-linux</lwjgl.natives>
|
<lwjgl.natives>natives-linux</lwjgl.natives>
|
||||||
</properties>
|
</properties>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Mozilla Public License 2.0</name>
|
||||||
|
<url>https://opensource.org/licenses/MPL-2.0</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>dev1</id>
|
||||||
|
<name>Edouard DUPIN</name>
|
||||||
|
<email>edouard.dupin@proton.me</email>
|
||||||
|
<roles>
|
||||||
|
<role>Lead Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
@ -275,18 +288,17 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>${maven.compiler.version}</version>
|
<version>3.14.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>${maven.compiler.source}</source>
|
<source>21</source>
|
||||||
<target>${maven.compiler.target}</target>
|
<target>21</target>
|
||||||
<!--<encoding>${project.build.sourceEncoding}</encoding>-->
|
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- Create the source bundle -->
|
<!-- Create the source bundle -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-source-plugin</artifactId>
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
<version>4.0.0-beta-1</version>
|
<version>3.3.1</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>attach-sources</id>
|
<id>attach-sources</id>
|
||||||
|
@ -20,8 +20,6 @@ import org.lwjgl.opengl.GL30;
|
|||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
//import models.RawModel;
|
|
||||||
|
|
||||||
public class ResourceVirtualArrayObject extends Resource {
|
public class ResourceVirtualArrayObject extends Resource {
|
||||||
static final Logger LOGGER = LoggerFactory.getLogger(ResourceVirtualArrayObject.class);
|
static final Logger LOGGER = LoggerFactory.getLogger(ResourceVirtualArrayObject.class);
|
||||||
public static final int INDICE_VBO_POSITIONS = 0;
|
public static final int INDICE_VBO_POSITIONS = 0;
|
Before Width: | Height: | Size: 98 KiB After Width: | Height: | Size: 98 KiB |
@ -1,36 +0,0 @@
|
|||||||
/**
|
|
||||||
* Basic module interface.
|
|
||||||
*
|
|
||||||
* @author Edouard DUPIN
|
|
||||||
*/
|
|
||||||
|
|
||||||
open module org.atriasoft.gale {
|
|
||||||
exports org.atriasoft.gale;
|
|
||||||
exports org.atriasoft.gale.backend3d;
|
|
||||||
exports org.atriasoft.gale.context;
|
|
||||||
// exports org.atriasoft.gale.context.JOGL;
|
|
||||||
exports org.atriasoft.gale.context.LWJG_AWT;
|
|
||||||
exports org.atriasoft.gale.key;
|
|
||||||
exports org.atriasoft.gale.resource;
|
|
||||||
|
|
||||||
requires transitive org.atriasoft.etk;
|
|
||||||
requires transitive org.atriasoft.egami;
|
|
||||||
|
|
||||||
requires transitive org.lwjgl;
|
|
||||||
requires transitive org.lwjgl.natives;
|
|
||||||
requires transitive org.lwjgl.glfw;
|
|
||||||
requires transitive org.lwjgl.glfw.natives;
|
|
||||||
requires transitive org.lwjgl.assimp;
|
|
||||||
requires transitive org.lwjgl.assimp.natives;
|
|
||||||
requires transitive org.lwjgl.stb;
|
|
||||||
requires transitive org.lwjgl.stb.natives;
|
|
||||||
requires transitive org.lwjgl.jawt;
|
|
||||||
requires transitive org.lwjgl.opengl;
|
|
||||||
requires transitive org.lwjgl.opengl.natives;
|
|
||||||
|
|
||||||
requires transitive java.desktop;
|
|
||||||
requires transitive org.atriasoft.pngdecoder;
|
|
||||||
requires transitive lwjgl3.awt;
|
|
||||||
requires org.atriasoft.iogami;
|
|
||||||
requires org.slf4j;
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user