We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c475e commit 9cdfa37Copy full SHA for 9cdfa37
src/main/java/workspace/ui/Graphics3D.java
@@ -6,6 +6,7 @@
6
import engine.resources.Texture;
7
import engine.scene.camera.Camera;
8
import engine.scene.light.Light;
9
+import engine.vbo.VBO;
10
import math.Matrix4f;
11
import mesh.Mesh3D;
12
@@ -28,6 +29,8 @@ public interface Graphics3D extends Graphics2D {
28
29
void drawFaces(Mesh3D mesh);
30
31
void fillFaces(Mesh3D mesh);
32
+
33
+ void draw(VBO vbo);
34
35
void renderInstances(Mesh3D mesh, List<Matrix4f> instanceTransforms);
36
0 commit comments