From ec9d13e42c9c8674739acefb0769a9273a1048c9 Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Mon, 22 Apr 2019 20:14:09 -0400
Subject: [PATCH] Refactoring GelGL.

---
 iCameraPane.java |   18 +++++++++++++++++-
 1 files changed, 17 insertions(+), 1 deletions(-)

diff --git a/iCameraPane.java b/iCameraPane.java
index bfbe44c..866cbe7 100644
--- a/iCameraPane.java
+++ b/iCameraPane.java
@@ -24,7 +24,7 @@
     
     boolean IsFrozen();
 
-    javax.media.opengl.GL GetGL();
+    javax.media.opengl.GL GetGL0();
     
     // Currently in Globals
     int DrawMode();
@@ -60,6 +60,22 @@
     
     void DrawFace(Object3D obj, Vertex pv, Vertex qv, Vertex rv, Face face);
     
+    void DrawBox(cVector min, cVector max);
+        
+    void DrawGeometry(BoundaryRep bRep, boolean flipV, boolean selectmode);
+    
+    void DrawDynamicMesh(cMesh c);
+    
+    void StartTriangles();
+    void EndTriangles();
+    
+    int  GenList();
+    void NewList(int id);
+    void CallList(int id);
+    void EndList();
+    
+    void NextIndex();
+            
     void DrawParticles(TriMesh geo, Object3D shape, boolean selected, boolean rotate);
     
     void PrepOcclusion(BoundaryRep br, double[][] transform);

--
Gitblit v1.6.2