Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eduramiba committed Sep 17, 2023
1 parent 8b63a4f commit 705741e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import com.jogamp.opengl.GL2ES2;
import com.jogamp.opengl.GL2ES3;
import com.jogamp.opengl.GL3;
import com.jogamp.opengl.GL4;
import org.gephi.viz.engine.jogl.util.gl.GLShaderProgram;
import org.gephi.viz.engine.util.gl.Constants;
Expand Down Expand Up @@ -95,7 +94,7 @@ public void drawInstanced(GL2ES3 gl, int vertexOffset, int vertexCount, int inst
gl.glDrawArraysInstanced(GL_TRIANGLES, vertexOffset, vertexCount, instanceCount);
}

public void drawIndirect(GL3 gl, int instanceCount, int instancesOffset) {
public void drawIndirect(GL4 gl, int instanceCount, int instancesOffset) {
if (instanceCount <= 0) {
return;
}
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

<gephi.graphstore.version>0.6.15-viz-engine-SNAPSHOT</gephi.graphstore.version>
<gephi.version>0.10.0</gephi.version>
<lwjgl.version>3.3.2</lwjgl.version>
<lwjgl.version>3.3.3</lwjgl.version>
<lwjgl3-awt.version>0.1.9-SNAPSHOT</lwjgl3-awt.version>
<jogl.version>2.5.0-rc-20230523</jogl.version>
<jogl.version>2.5.0</jogl.version>

<joml.version>1.10.5</joml.version>
<netbeans.version>RELEASE180</netbeans.version>
Expand Down

0 comments on commit 705741e

Please sign in to comment.