diff options
author | Sven Gothel <[email protected]> | 2001-06-19 00:35:32 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2001-06-19 00:35:32 +0000 |
commit | f62755830910dd46e08854c7f5fc00e9eb07461b (patch) | |
tree | d09359c6aa6ac54aa4174ab592b76807618a7a64 /gl4java/GLUFunc.java | |
parent | c8a2ba351724ccd7705715b73b0ae23fb8917bf0 (diff) |
2.8.0.0 pre-release cvs only
Diffstat (limited to 'gl4java/GLUFunc.java')
-rw-r--r-- | gl4java/GLUFunc.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gl4java/GLUFunc.java b/gl4java/GLUFunc.java index 26abbc0..b69c990 100644 --- a/gl4java/GLUFunc.java +++ b/gl4java/GLUFunc.java @@ -172,7 +172,7 @@ public void gluDeleteTess( long tobj ); /** * Original Function-Prototype : * <pre> - extern GLint gluScaleImage ( GLenum format , GLsizei widthin , GLsizei heightin , GLenum typein , const char * datain , GLsizei widthout , GLsizei heightout , GLenum typeout , char * dataout ) ; + extern GLint gluScaleImage ( GLenum format , GLsizei widthin , GLsizei heightin , GLenum typein , const GLbyte * datain , GLsizei widthout , GLsizei heightout , GLenum typeout , GLbyte * dataout ) ; * </pre> */ public int gluScaleImage ( @@ -180,7 +180,7 @@ public void gluDeleteTess( long tobj ); int widthin, int heightin, int typein, - String datain, + byte[] datain, int widthout, int heightout, int typeout, |