Normand Briere
2019-09-08 4a303a7b3635adfee8f46ac76af4e1b7b4a7029b
iCameraPane.java
....@@ -55,8 +55,12 @@
5555
5656 void DrawString(Object3D obj);
5757
58
- void BindTextures(cTexture tex, int resolution) throws Exception;
59
- void ReleaseTextures(cTexture tex);
58
+ //void BindTextures(cTexture tex, int resolution) throws Exception;
59
+ //void ReleaseTextures(cTexture tex);
60
+ void BindPigmentTexture(cTexture tex, int resolution) throws Exception;
61
+ void BindBumpTexture(cTexture tex, int resolution) throws Exception;
62
+ void ReleasePigmentTexture(cTexture tex);
63
+ void ReleaseBumpTexture(cTexture tex);
6064
6165 void DrawFace(Object3D obj, Vertex pv, Vertex qv, Vertex rv, Face face);
6266
....@@ -82,7 +86,7 @@
8286
8387 void setCursor(java.awt.Cursor cursor);
8488
85
- com.sun.opengl.util.texture.TextureData GetTextureData(String tex, boolean bump, int resolution) throws Exception;
89
+ com.sun.opengl.util.texture.TextureData GetTextureData(cTexture tex, boolean bump, int resolution) throws Exception;
8690
8791 void repaint();
8892