aboutsummaryrefslogtreecommitdiffstats
path: root/gl4java/GLUFunc.java
diff options
context:
space:
mode:
Diffstat (limited to 'gl4java/GLUFunc.java')
-rw-r--r--gl4java/GLUFunc.java4
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,