Re: [sdljava-users] GLU support added to gljava(opengl) binding
Status: Beta
Brought to you by:
ivan_ganza
From: Rainer K. <ar...@gm...> - 2005-03-24 13:49:17
|
Ivan Z. Ganza wrote: > I've happy to announce that GLU support has been added to the opengl > binding. Its is fully implemented _except_ for functions which involve a > callback. - gluNurbsCallback - gluNurbsCallbackData - > gluNurbsCallbackDataEXT - gluQuadricCallback > - gluTessCallback > > The rest of the functions are all available. If you have a chance > please give this a shot. Let me know if any problems are found. > > Just rebuild your libgljava.so/gljava.dll -- no other changes should be > required. > > Thanks, > -Ivan/ Java class should be GLUquadric, not GLUquadratic :) Then I cannot build the native bindings on Windows since _GLUfuncptr is never defined: glew_wrap.c glew_wrap.c(6729) : error C2065: '_GLUfuncptr' : undeclared identifier glew_wrap.c(6729) : error C2146: syntax error : missing ';' before identifier 'a rg3' glew_wrap.c(6729) : error C2144: syntax error : '<Unknown>' should be preceded b y '<Unknown>' glew_wrap.c(6729) : error C2144: syntax error : '<Unknown>' should be preceded b y '<Unknown>' glew_wrap.c(6729) : error C2143: syntax error : missing ';' before 'identifier' glew_wrap.c(6729) : error C2065: 'arg3' : undeclared identifier glew_wrap.c(6730) : error C2065: 'argp3' : undeclared identifier glew_wrap.c(6730) : warning C4552: '*' : operator has no effect; expected operat or with side-effect glew_wrap.c(6736) : error C2059: syntax error : ')' glew_wrap.c(6741) : error C2100: illegal indirection glew_wrap.c(6742) : warning C4047: 'function' : 'void (__stdcall *)()' differs i n levels of indirection from 'int' glew_wrap.c(7106) : error C2146: syntax error : missing ';' before identifier 'a rg3' glew_wrap.c(7106) : error C2144: syntax error : '<Unknown>' should be preceded b y '<Unknown>' glew_wrap.c(7106) : error C2144: syntax error : '<Unknown>' should be preceded b y '<Unknown>' glew_wrap.c(7106) : error C2143: syntax error : missing ';' before 'identifier' glew_wrap.c(7107) : warning C4552: '*' : operator has no effect; expected operat or with side-effect glew_wrap.c(7113) : error C2059: syntax error : ')' glew_wrap.c(7118) : error C2100: illegal indirection glew_wrap.c(7119) : warning C4047: 'function' : 'void (__stdcall *)()' differs i n levels of indirection from 'int' glew_wrap.c(7278) : error C2146: syntax error : missing ';' before identifier 'a rg3' glew_wrap.c(7278) : error C2144: syntax error : '<Unknown>' should be preceded b y '<Unknown>' glew_wrap.c(7278) : error C2144: syntax error : '<Unknown>' should be preceded b y '<Unknown>' glew_wrap.c(7278) : error C2143: syntax error : missing ';' before 'identifier' glew_wrap.c(7279) : warning C4552: '*' : operator has no effect; expected operat or with side-effect glew_wrap.c(7285) : error C2059: syntax error : ')' glew_wrap.c(7290) : error C2100: illegal indirection glew_wrap.c(7291) : warning C4047: 'function' : 'void (__stdcall *)()' differs i n levels of indirection from 'int' NMAKE : fatal error U1077: 'D:\PROGRA~1\MICROS~1.NET\VC7\bin\cl.exe' : return co de '0x2' Stop. |