You can subscribe to this list here.
1999 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(12) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2000 |
Jan
(39) |
Feb
(22) |
Mar
(41) |
Apr
(44) |
May
(47) |
Jun
(25) |
Jul
(28) |
Aug
(39) |
Sep
(35) |
Oct
(31) |
Nov
(31) |
Dec
(3) |
2001 |
Jan
(18) |
Feb
(43) |
Mar
(47) |
Apr
(38) |
May
(9) |
Jun
(20) |
Jul
(8) |
Aug
(11) |
Sep
(15) |
Oct
(43) |
Nov
(27) |
Dec
(73) |
2002 |
Jan
(42) |
Feb
(47) |
Mar
(49) |
Apr
(58) |
May
(12) |
Jun
(68) |
Jul
(42) |
Aug
(9) |
Sep
(19) |
Oct
(36) |
Nov
(28) |
Dec
(12) |
2003 |
Jan
(13) |
Feb
(24) |
Mar
(40) |
Apr
(52) |
May
(39) |
Jun
(46) |
Jul
(17) |
Aug
(5) |
Sep
(4) |
Oct
(9) |
Nov
(13) |
Dec
(12) |
2004 |
Jan
(1) |
Feb
(17) |
Mar
(4) |
Apr
(2) |
May
(1) |
Jun
(1) |
Jul
(1) |
Aug
(1) |
Sep
(1) |
Oct
(6) |
Nov
(6) |
Dec
(3) |
2005 |
Jan
|
Feb
|
Mar
(8) |
Apr
(1) |
May
|
Jun
(1) |
Jul
(2) |
Aug
(5) |
Sep
(4) |
Oct
(3) |
Nov
(3) |
Dec
(1) |
2006 |
Jan
(2) |
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
(5) |
Sep
(8) |
Oct
(9) |
Nov
(8) |
Dec
(5) |
2007 |
Jan
(3) |
Feb
(11) |
Mar
(5) |
Apr
(5) |
May
(1) |
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
(5) |
2008 |
Jan
(7) |
Feb
(8) |
Mar
(30) |
Apr
(17) |
May
(20) |
Jun
(8) |
Jul
(19) |
Aug
(10) |
Sep
(7) |
Oct
(2) |
Nov
(1) |
Dec
|
2009 |
Jan
(13) |
Feb
(7) |
Mar
(13) |
Apr
(27) |
May
(95) |
Jun
(77) |
Jul
(43) |
Aug
(25) |
Sep
(24) |
Oct
(32) |
Nov
(6) |
Dec
(6) |
2010 |
Jan
|
Feb
(2) |
Mar
(30) |
Apr
(58) |
May
(60) |
Jun
(72) |
Jul
(32) |
Aug
(45) |
Sep
(19) |
Oct
(4) |
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2016 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Kenneth B. R. <kbr...@al...> - 2002-04-25 03:04:41
|
> i would like to add NIO Buffer usage for all > kind of arrays (for the 1.4 libs only, of course ;-) > > e.g. (just added them to the manual glu part): > > public final native void gluTessVertex ( long tess, DoubleBuffer location, > Buffer data) ; > > we force usage of the DoubleBuffer type, so the user MUST > create a DoubleBuffer of a ByteBuffer via a view ! This sounds like a good idea. I was thinking about adding this (in particular, to expose some more of the NVidia extensions which take float* instead of void*) but got hung up because some of the more interesting extensions require wgl or glX to be exposed to Java via some portability layer. For most routines the presence of the additional overloads will probably be helpful. |
From: Sven G. <sgo...@ja...> - 2002-04-25 02:57:19
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 proposal: NIO V (for all) Arrays via C2J .. =================================== i would like to add NIO Buffer usage for all kind of arrays (for the 1.4 libs only, of course ;-) e.g. (just added them to the manual glu part): - -------------------------- /** * Original Function-Prototype : * <pre> extern void gluTessVertex ( GLUtesselator * tess , GLdouble * location , GLvoid * data ) ; * </pre> */ public final native void gluTessVertex ( long tess, DoubleBuffer location, Buffer data) ; - -------------------------- we force usage of the DoubleBuffer type, so the user MUST create a DoubleBuffer of a ByteBuffer via a view ! a bit more type clean .. - -------------------------- JNIEXPORT void JNICALL Java_gl4java_GLUFunc14JauJNI_gluTessVertex__JLjava_nio_DoubleBuffer_2Ljava_nio_Buffer_2 ( JNIEnv *env, jobject obj, jlong tess, jobject location, jobject data) { jboolean isCopiedArray1 = JNI_FALSE; jdouble *ptr1 = NULL; void *ptr2 = NULL; if ( disp__gluTessVertex == NULL ) return; if(location!=NULL) { ptr1 = (jdouble *) (*env)->GetDirectBufferAddress(env, location); if (ptr1 == NULL) { (*env)->ThrowNew(env, (*env)->FindClass(env, "java/lang/IllegalArgumentException"), "Argument 1 was not a direct double buffer"); return ; } } .. etc .. - -------------------------- today, only "void *" are wrapped up to any Buffer ! so "tomorrow", we can offer strict type Buffer's for any specific typed array ... please vote ! cheers, sven - -- health & wealth mailto:sgo...@ja... www : http://www.jausoft.com ; pgp: http://www.jausoft.com/gpg/ voice : +49-521-2399440 ; fax : +49-521-2399442 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE8x3CAHdOA30NoFAARArp/AJ0f8NVJpeBSbdSsqdO+rNBAjfzl5wCaA4uq rSDg3Sr603LjMtsCB1d80GU= =79fz -----END PGP SIGNATURE----- |
From: Sven G. <sgo...@ja...> - 2002-04-24 23:37:17
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Monday 22 April 2002 09:48, Pepijn Van Eeckhoudt wrote: > I found a small bug in my tesselator patch :) Before adding a > callbackentry, SetCurrentCallbackObject wasn't called. Because of this > findCallbackNode could sometimes not find the matching callbacknode (in > the case where a callback had already been defined for a given > tesselator). A new callbacknode was then added to the callback list. > When the callback was actually used, the FindCallbackEntry method would > find the first node in the list, being the old callback node. > What I've done is duplicated some of the callback methods so there is a > version that takes the current callback object into account, and one > that ignores it. That way the tesselators work fine now and the nurbs > and quadrics stuff remains unchanged. > Eventually, I guess the nurbs and quadrics methods should call > SetCurrentCallbackObject too, which removes the necessity of the > duplicated code. If I want to implement this should this also be put in > the manual part or can C2J be modified to handle this? > > Pepijn Van Eeckhoudt cool .. i do put it in CVS, thanxs i have added your _AddCallbackNodeForCbObj to glu-manualCodedImplJNI14.c also thanxs for the bugfix if the types/enums within glu-manualCodedImplJNI14.c i will recheck NIO stuff, then i do checkin .. later, sven - -- health & wealth mailto:sgo...@ja... www : http://www.jausoft.com ; pgp: http://www.jausoft.com/gpg/ voice : +49-521-2399440 ; fax : +49-521-2399442 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE8x0GSHdOA30NoFAARAiF+AKCR5Xa6/SNDmutfrGAxb8wEVbPk2wCfULLk P0nmi1ET9t9npuxvSlj2X4w= =p5RG -----END PGP SIGNATURE----- |
From: Pepijn V. E. <pep...@lu...> - 2002-04-22 07:48:49
|
I found a small bug in my tesselator patch :) Before adding a callbackentry, SetCurrentCallbackObject wasn't called. Because of this findCallbackNode could sometimes not find the matching callbacknode (in the case where a callback had already been defined for a given tesselator). A new callbacknode was then added to the callback list. When the callback was actually used, the FindCallbackEntry method would find the first node in the list, being the old callback node. What I've done is duplicated some of the callback methods so there is a version that takes the current callback object into account, and one that ignores it. That way the tesselators work fine now and the nurbs and quadrics stuff remains unchanged. Eventually, I guess the nurbs and quadrics methods should call SetCurrentCallbackObject too, which removes the necessity of the duplicated code. If I want to implement this should this also be put in the manual part or can C2J be modified to handle this? Pepijn Van Eeckhoudt |
From: Subu <ma...@ce...> - 2002-04-19 07:47:31
|
Hello all, glj.gljMakeCurrent() fails with the error code 1282 (invalid operation). This happens after I maximize the parent swing Panel. What could be going wrong? Thanks. -Subu |
From: Sven G. <sgo...@ja...> - 2002-04-17 18:41:44
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Wednesday 17 April 2002 12:35, Pepijn Van Eeckhoudt wrote: > I just checked out the current cvs version. Apparantly the > memorymanager.h and .c file have not been added to the cvs. I wanted to > use my original copies of these files, but apparantly sven changed them > a bit. Could somebody check these two in please. > i will be somebody .. wait 1 hour, then they will be in, sorry. (got to scp files to my place i am now, then i do a checkin) any more missing ? > Pepijn Van Eeckhoudt > sven > > _______________________________________________ > gl4java-usergroup mailing list > gl4...@li... > https://lists.sourceforge.net/lists/listinfo/gl4java-usergroup - -- health & wealth mailto:sgo...@ja... www : http://www.jausoft.com ; pgp: http://www.jausoft.com/gpg/ voice : +49-521-2399440 ; fax : +49-521-2399442 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE8vcDwHdOA30NoFAARAmikAJ90Wl2vhAaQmdhBNbv7ReHdHKDe4QCcCa5g 6Gfuvg8lBv5XuoXRgeBv7pg= =yeP3 -----END PGP SIGNATURE----- |
From: spong <sp...@in...> - 2002-04-17 12:10:04
|
hi Mark, two kinds of fonts are included in GL4Java ( and also in the glut-libraries ): bitmap-fonts and stroke-fonts. Bitmap-fonts are only avaiable with the size they are created. Actually and at my knowledge, the fonts you use are textures --> scale the underlying faces and attach them the also scaled font-textures. But if you use the methods included in the GL4Java-packages ( gl4java.utils.glf & gl4java.util.glut.font ) you can't do this. In this case you should ( if you want to have scalable fonts/characters ) write your own methods to create the faces representing the text. Another way: create your own set of characters ( look at classes: gl4java.util.font.BitmapCharRec & gl4java.util.font.BitmapFontRec ).If you want to use predefined fonts the only way is to use the glut-method glutStokeCharacter ( gl4java: glutStrokeString ). The geometric objects created by this methods are scalable. But only two fonts are avaiable: GLUT_STROKE_ROMAN and GLUT_STROKE_MONO_ROMAN. on the other hand: i don't know what actually glfDraw3DSolidStringF(...) create ;) maybe 3D-solids?? then you can simply use glScaleMatrix to scale the solids! hope, i don't wrote bullshit. Jens ( and sorry for my bad english ) R.M. Logan wrote: >I've looked at several pages on the web and the glf demo on the gl4java >site, but does anyone know how it is possible to change the actual size >of the font? Is it actually possible? > >When i'm drawing my text i currently have: > > gl.glPushMatrix(); > gl.glColor3f(0.0f,0.0f,0.0f); > glf.glfDraw3DSolidStringF(fTimesNew1,"Event"); > gl.glTranslatef(0.0f,-1.4f,0.0f); > glf.glfDraw3DSolidStringF(fTimesNew1,"Age"); > gl.glTranslatef(0.0f,-1.4f,0.0f); > glf.glfDraw3DSolidStringF(fTimesNew1,"Date"); > gl.glTranslatef(0.0f,-1.4f,0.0f); > glf.glfDraw3DSolidStringF(fTimesNew1,"Parish"); > gl.glTranslatef(0.0f,-1.4f,0.0f); > > gl.glPopMatrix(); > >Is it possible to set the font, any ideas, currently it displays too >big. > >(Btw this is the last hurdle in my project). > > Thanks again, > Mark. > >_______________________________________________ >gl4java-usergroup mailing list >gl4...@li... >https://lists.sourceforge.net/lists/listinfo/gl4java-usergroup > |
From: Pepijn V. E. <pep...@lu...> - 2002-04-17 10:35:54
|
I just checked out the current cvs version. Apparantly the memorymanager.h and .c file have not been added to the cvs. I wanted to use my original copies of these files, but apparantly sven changed them a bit. Could somebody check these two in please. Pepijn Van Eeckhoudt |
From: gofreak <go...@su...> - 2002-04-17 01:16:24
|
Hi! I have been developing an assignment with GL4Java and I want to give it to my teacher for evaluation. How do I go about that without resorting to making him install the whole library? Is it possible to put the native libraries in the same directory as the program, and/or do I have to insert a parameter on the java startup line? Thanks, Francois-L. Gilbert |
From: R.M. L. <u8...@cs...> - 2002-04-16 10:21:07
|
I've looked at several pages on the web and the glf demo on the gl4java site, but does anyone know how it is possible to change the actual size of the font? Is it actually possible? When i'm drawing my text i currently have: gl.glPushMatrix(); gl.glColor3f(0.0f,0.0f,0.0f); glf.glfDraw3DSolidStringF(fTimesNew1,"Event"); gl.glTranslatef(0.0f,-1.4f,0.0f); glf.glfDraw3DSolidStringF(fTimesNew1,"Age"); gl.glTranslatef(0.0f,-1.4f,0.0f); glf.glfDraw3DSolidStringF(fTimesNew1,"Date"); gl.glTranslatef(0.0f,-1.4f,0.0f); glf.glfDraw3DSolidStringF(fTimesNew1,"Parish"); gl.glTranslatef(0.0f,-1.4f,0.0f); gl.glPopMatrix(); Is it possible to set the font, any ideas, currently it displays too big. (Btw this is the last hurdle in my project). Thanks again, Mark. |
From: spong <sp...@in...> - 2002-04-15 14:04:12
|
hello Mark, i had the same problems. to view the demos i use the java-appletviewer ( should be also in you'r jdk ). on the commandline move to the demo-path and execute: $demopath:> appletviewer demo.html demo.html means the file which you tried to open in the browser. this should work fine. Be shure, all path-variables are set ( java ). greetings, Jens |
From: R.M. L. <u8...@cs...> - 2002-04-15 12:51:39
|
Hello, I've realised now that the reason GLFdemos doesn't work may be due to the policy file for the browser i'm using.(At the moment i get just the grid and no text when viewing glfdemo). Please could someone explain to me how i can get it to work when the demo is loaded from the c drive or is viewed online. Apologies for asking this, but i am unfamiliar with policy file operations and any advice would be especially helpful. I'm using IE5 and JDK 1.2.1 running WinME, do i need a newer version of the jdk? The version of gl4java that i'm using was downloaded in February, I think it's the latest release. Thanks again, Mark Logan. |
From: Jacob M. <ja...@ma...> - 2002-04-14 15:16:25
|
Be patient Mark. It is Sunday; the day with lowest activity on all computer related forums and mailing lists. I don't know the answer myself, but I am sure somebody can help you out in time. Jacob ----- Original Message ----- From: "mark logan" <ron...@ya...> To: <gl4...@li...> Sent: Sunday, April 14, 2002 17:09 Subject: [gl4java-usergroup] Best way of slowly moving viewport to a coordinate? > Please can someone help me out with an approach to > doing this. > > Thanks, > Mark. > > u8...@cs... > > __________________________________________________ > Do You Yahoo!? > Everything you'll ever need on one web page > from News and Sport to Email and Music Charts > http://uk.my.yahoo.com > > _______________________________________________ > gl4java-usergroup mailing list > gl4...@li... > https://lists.sourceforge.net/lists/listinfo/gl4java-usergroup > |
From: <ron...@ya...> - 2002-04-14 15:09:24
|
Please can someone help me out with an approach to doing this. Thanks, Mark. u8...@cs... __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com |
From: <ron...@ya...> - 2002-04-14 12:17:33
|
Hello, I've taken a look at the code for glf3dtext.java, but when i run the applet the glf text doesn't display...i just get the grid drawn. At the moment i'm trying to get glf to display in my applet...i'm going about it in a similar fashion and still no joy, could it be a browser security setting? Is this feature specific to a version of java? Because my code compiles, so i guess it's found gl4java.utils.glf. Your help and ideas would be greatly appreciated, also other ideas about displaying 3d text would be helpful. Thanks again, Mark. u8...@cs... __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com |
From: Sven G. <sgo...@ja...> - 2002-04-13 04:58:14
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Pepijn Van Eeckhoudt GC patch is merged (CVS) any more ideas ? next: MacOSX .. cheers, sven - -- health & wealth mailto:sgo...@ja... www : http://www.jausoft.com ; pgp: http://www.jausoft.com/gpg/ voice : +49-521-2399440 ; fax : +49-521-2399442 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE8t7riHdOA30NoFAARArP8AJwLtN4zhBoIKl/+FWO0vOPCGlE2pwCgg/AD QJZ7ZrYMdlf5rkfsmA3UtPk= =rz68 -----END PGP SIGNATURE----- |
From: <ron...@ya...> - 2002-04-12 17:58:31
|
Is there a way to list glut text like below, so you only have to put in one environment and display it in a list fashion? ie: Name Age etc Under one another? At the moment i'm using: glut.glutBitmapString(glu.GLUT_BITMAP_8_BY13, +name+age etc...) Thanks again, Mark. Apologies for such a newbie question. __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com |
From: Luca L. <Luc...@in...> - 2002-04-12 13:10:23
|
Sorry if this was already reported, I have a program that uses gl4Java (now from about 3 or more years) happily. I just discover one problem, the doLoadNativeLibraries method that is called by loadNativeLibraries is supposed to return true if the libraries are present (and to load them) or false if not. But (and this was added recently probably, some months ago) it will never return false, because in that case it simply perform a System.exit(1) call (arghhhhh!). So in my case that I check for the libraries when these are not available the method forces my program to exit without errors......... (even if I can manage the absence using a pure java alternative). From GLContext.doLoadNativeLibraries: ................. if(!libsLoaded) System.exit(1); return libsLoaded; } .................. Just to ask what the purpose of returning libsLoaded if it can only be true (System.exit otherwise) ;-))) I hope it was just a couple of lines left there for error. Could it be removed for the future? It would be better to let the program dealing with the decision of exiting or continuing. Don't you think? Best regards, Luca Lutterotti |
From: paca <pa...@no...> - 2002-04-11 18:39:30
|
I try to compile GL4Java (from CVS sources) but I've got this error (see above) what should I do to fix this ? Best regards R.Pac make x11 return the following : gl4java/GL4JavaInitException.java:5: error while writing gl4java.GL4JavaInitException: /home/pac/lib/lib-java/gl4java/GL4JavaInitException.class (No such file or directory ) public class GL4JavaInitException extends Exception ^ gl4java/GLContext.java:1145: warning: getPeer() in java.awt.Component has been deprecated (comp.getPeer() instanceof java.awt.peer.LightweightPeer) ^ gl4java/utils/textures/PPMAsciiTextureLoader.java:35: warning: readLine() in java.io.DataInputStream has been deprecated String lin=reader.readLine(); //P6 ^ gl4java/utils/textures/PPMAsciiTextureLoader.java:38: warning: readLine() in java.io.DataInputStream has been deprecated lin=reader.readLine(); ^ gl4java/utils/textures/PPMAsciiTextureLoader.java:43: warning: readLine() in java.io.DataInputStream has been deprecated lin=reader.readLine(); ^ gl4java/utils/textures/PPMAsciiTextureLoader.java:71: warning: readLine() in java.io.DataInputStream has been deprecated lin=reader.readLine(); //255 ^ 1 error 5 warnings make: *** [/home/pac/lib/lib-java/gl4java/GL4JavaInitException.class] Erreur 1 |
From: Mikael A. <mik...@te...> - 2002-04-10 17:56:03
|
Hi ! Ahh, thanks, that did it. Mikael ----- Original Message ----- From: "Kenneth B. Russell" <kbr...@al...> To: <mik...@te...> Cc: <gl4...@li...> Sent: Wednesday, April 10, 2002 4:31 PM Subject: Re: [gl4java-usergroup] Cursor problem..... > > > When my application starts with the mouse cursor over the GLCanvas I end up > > with an unpainted area under the cursor, this happens sometimes also when I > > click for example in a popup menu/combobox that overlaps the GLCanvas, the > > small area under the cursor does not get updated correct, I would guess that > > this has something to do with the swapping of the doublebuffers, but what > > can I do about it ? > > > > Any one else noticed this problem ? > > If you're running under Windows 2000 or later, turn off the > "Enable pointer shadow" checkbox in the Pointers tab of the Mouse > control panel. |
From: Kenneth B. R. <kbr...@al...> - 2002-04-10 15:32:07
|
> When my application starts with the mouse cursor over the GLCanvas I end up > with an unpainted area under the cursor, this happens sometimes also when I > click for example in a popup menu/combobox that overlaps the GLCanvas, the > small area under the cursor does not get updated correct, I would guess that > this has something to do with the swapping of the doublebuffers, but what > can I do about it ? > > Any one else noticed this problem ? If you're running under Windows 2000 or later, turn off the "Enable pointer shadow" checkbox in the Pointers tab of the Mouse control panel. |
From: Mikael A. <mik...@te...> - 2002-04-10 13:51:06
|
Hi ! When my application starts with the mouse cursor over the GLCanvas I end up with an unpainted area under the cursor, this happens sometimes also when I click for example in a popup menu/combobox that overlaps the GLCanvas, the small area under the cursor does not get updated correct, I would guess that this has something to do with the swapping of the doublebuffers, but what can I do about it ? Any one else noticed this problem ? Mikael |
From: Byron W. <bsl...@mi...> - 2002-04-10 02:22:13
|
Tried that with no luck. Win2K. -----Original Message----- From: Kenneth B. Russell [mailto:kbr...@al...] Sent: Tuesday, April 09, 2002 7:18 PM To: Byron Wright Cc: gl4...@li... Subject: Re: [gl4java-usergroup] GL Fullscreen error Make sure you have specified -Dsun.java2d.noddraw=true on Windows due to driver incompatibilities between DirectDraw and OpenGL. Aside from that I don't know what the problem could be. > I am atempting to get fullscreen mode (jdk 1.4) to work with gl4java 2.8 > with no luck. I compiled the files from the F.A.Q at jausoft : > "gearRenderer.java" and "gearsFullScreen.java". > > My System spec: > > IBM Thinkpad T21 > 750Mhz > 256MB Ram > S3 Savage/IX 8MB video card. > > The JVM crashes with the following error: > > isFullScreenSupported: true > > An unexpected exception has been detected in native code outside the VM. > Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0xAFF3DC5 > Function=[Unknown.] > Library=C:\WINDOWS\system32\mxicd.dll > > NOTE: We are unable to locate the function name symbol for the error > just occurred. Please refer to release documentation for possible > reason and solutions. > > > Current Java thread: > at gl4java.GLContext.openOpenGLNative(Native Method) > at gl4java.GLContext.gljInit(GLContext.java:1996) > - locked <02A2D580> (a gl4java.GLContext) > at gl4java.GLContext.createGLContext(GLContext.java:1942) > at gl4java.GLContext.<init>(GLContext.java:1161) > at gl4java.GLContext.<init>(GLContext.java:1251) > at gl4java.awt.GLCanvas.paint(GLCanvas.java:444) > at sun.awt.RepaintArea.paint(Unknown Source) > at sun.awt.windows.WComponentPeer.handleEvent(Unknown Source) > at java.awt.Component.dispatchEventImpl(Unknown Source) > at java.awt.Component.dispatchEvent(Unknown Source) > at java.awt.EventQueue.dispatchEvent(Unknown Source) > at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown > Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.run(Unknown Source) > > Dynamic libraries: > 0x00400000 - 0x00406000 C:\WINDOWS\system32\java.exe > 0x77F80000 - 0x77FFB000 C:\WINDOWS\System32\ntdll.dll > 0x77DB0000 - 0x77E0B000 C:\WINDOWS\system32\ADVAPI32.dll > 0x77E80000 - 0x77F35000 C:\WINDOWS\system32\KERNEL32.DLL > 0x77D40000 - 0x77DAC000 C:\WINDOWS\system32\RPCRT4.DLL > 0x78000000 - 0x78046000 C:\WINDOWS\system32\MSVCRT.dll > 0x6D330000 - 0x6D442000 C:\Program > Files\Java\j2re1.4.0\bin\client\jvm.dll > 0x77E10000 - 0x77E74000 C:\WINDOWS\system32\USER32.dll > 0x77F40000 - 0x77F7C000 C:\WINDOWS\system32\GDI32.DLL > 0x77570000 - 0x775A0000 C:\WINDOWS\system32\WINMM.dll > 0x75E60000 - 0x75E7A000 C:\WINDOWS\System32\IMM32.DLL > 0x6D1D0000 - 0x6D1D7000 C:\Program Files\Java\j2re1.4.0\bin\hpi.dll > 0x6D300000 - 0x6D30D000 C:\Program > Files\Java\j2re1.4.0\bin\verify.dll > 0x6D210000 - 0x6D228000 C:\Program Files\Java\j2re1.4.0\bin\java.dll > 0x6D320000 - 0x6D32D000 C:\Program Files\Java\j2re1.4.0\bin\zip.dll > 0x6D000000 - 0x6D0F6000 C:\Program Files\Java\j2re1.4.0\bin\awt.dll > 0x77800000 - 0x7781D000 C:\WINDOWS\system32\WINSPOOL.DRV > 0x77A50000 - 0x77B3A000 C:\WINDOWS\system32\ole32.dll > 0x10000000 - 0x1006C000 C:\Program > Files\Java\j2re1.4.0\bin\GL4JavaJauGljJNI14.dll > 0x6D230000 - 0x6D235000 C:\Program Files\Java\j2re1.4.0\bin\jawt.dll > 0x69510000 - 0x695D7000 C:\WINDOWS\system32\OPENGL32.DLL > 0x6FAC0000 - 0x6FADF000 C:\WINDOWS\system32\GLU32.dll > 0x51000000 - 0x51044000 C:\WINDOWS\system32\DDRAW.dll > 0x728A0000 - 0x728A6000 C:\WINDOWS\system32\DCIMAN32.dll > 0x6D180000 - 0x6D1D0000 C:\Program > Files\Java\j2re1.4.0\bin\fontmanager.dll > 0x0AF80000 - 0x0B051000 C:\WINDOWS\system32\mxicd.dll > 0x0B180000 - 0x0B18E000 C:\Program > Files\Together4.2\bin\win32\dl.dll > 0x77920000 - 0x77943000 C:\WINDOWS\system32\imagehlp.dll > 0x72A00000 - 0x72A2D000 C:\WINDOWS\system32\DBGHELP.dll > 0x690A0000 - 0x690AB000 C:\WINDOWS\system32\PSAPI.DLL > > Local Time = Tue Apr 09 18:15:07 2002 > Elapsed Time = 2 > # > # The exception above was detected in native code outside the VM > # > # Java VM: Java HotSpot(TM) Client VM (1.4.0-b92 mixed mode) > # > # An error report file has been saved as hs_err_pid1568.log. > # Please refer to the file for further information. > # > > > _______________________________________________ > gl4java-usergroup mailing list > gl4...@li... > https://lists.sourceforge.net/lists/listinfo/gl4java-usergroup |
From: Kenneth B. R. <kbr...@al...> - 2002-04-10 02:17:45
|
Make sure you have specified -Dsun.java2d.noddraw=true on Windows due to driver incompatibilities between DirectDraw and OpenGL. Aside from that I don't know what the problem could be. > I am atempting to get fullscreen mode (jdk 1.4) to work with gl4java 2.8 > with no luck. I compiled the files from the F.A.Q at jausoft : > "gearRenderer.java" and "gearsFullScreen.java". > > My System spec: > > IBM Thinkpad T21 > 750Mhz > 256MB Ram > S3 Savage/IX 8MB video card. > > The JVM crashes with the following error: > > isFullScreenSupported: true > > An unexpected exception has been detected in native code outside the VM. > Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0xAFF3DC5 > Function=[Unknown.] > Library=C:\WINDOWS\system32\mxicd.dll > > NOTE: We are unable to locate the function name symbol for the error > just occurred. Please refer to release documentation for possible > reason and solutions. > > > Current Java thread: > at gl4java.GLContext.openOpenGLNative(Native Method) > at gl4java.GLContext.gljInit(GLContext.java:1996) > - locked <02A2D580> (a gl4java.GLContext) > at gl4java.GLContext.createGLContext(GLContext.java:1942) > at gl4java.GLContext.<init>(GLContext.java:1161) > at gl4java.GLContext.<init>(GLContext.java:1251) > at gl4java.awt.GLCanvas.paint(GLCanvas.java:444) > at sun.awt.RepaintArea.paint(Unknown Source) > at sun.awt.windows.WComponentPeer.handleEvent(Unknown Source) > at java.awt.Component.dispatchEventImpl(Unknown Source) > at java.awt.Component.dispatchEvent(Unknown Source) > at java.awt.EventQueue.dispatchEvent(Unknown Source) > at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown > Source) > at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown > Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.pumpEvents(Unknown Source) > at java.awt.EventDispatchThread.run(Unknown Source) > > Dynamic libraries: > 0x00400000 - 0x00406000 C:\WINDOWS\system32\java.exe > 0x77F80000 - 0x77FFB000 C:\WINDOWS\System32\ntdll.dll > 0x77DB0000 - 0x77E0B000 C:\WINDOWS\system32\ADVAPI32.dll > 0x77E80000 - 0x77F35000 C:\WINDOWS\system32\KERNEL32.DLL > 0x77D40000 - 0x77DAC000 C:\WINDOWS\system32\RPCRT4.DLL > 0x78000000 - 0x78046000 C:\WINDOWS\system32\MSVCRT.dll > 0x6D330000 - 0x6D442000 C:\Program > Files\Java\j2re1.4.0\bin\client\jvm.dll > 0x77E10000 - 0x77E74000 C:\WINDOWS\system32\USER32.dll > 0x77F40000 - 0x77F7C000 C:\WINDOWS\system32\GDI32.DLL > 0x77570000 - 0x775A0000 C:\WINDOWS\system32\WINMM.dll > 0x75E60000 - 0x75E7A000 C:\WINDOWS\System32\IMM32.DLL > 0x6D1D0000 - 0x6D1D7000 C:\Program Files\Java\j2re1.4.0\bin\hpi.dll > 0x6D300000 - 0x6D30D000 C:\Program > Files\Java\j2re1.4.0\bin\verify.dll > 0x6D210000 - 0x6D228000 C:\Program Files\Java\j2re1.4.0\bin\java.dll > 0x6D320000 - 0x6D32D000 C:\Program Files\Java\j2re1.4.0\bin\zip.dll > 0x6D000000 - 0x6D0F6000 C:\Program Files\Java\j2re1.4.0\bin\awt.dll > 0x77800000 - 0x7781D000 C:\WINDOWS\system32\WINSPOOL.DRV > 0x77A50000 - 0x77B3A000 C:\WINDOWS\system32\ole32.dll > 0x10000000 - 0x1006C000 C:\Program > Files\Java\j2re1.4.0\bin\GL4JavaJauGljJNI14.dll > 0x6D230000 - 0x6D235000 C:\Program Files\Java\j2re1.4.0\bin\jawt.dll > 0x69510000 - 0x695D7000 C:\WINDOWS\system32\OPENGL32.DLL > 0x6FAC0000 - 0x6FADF000 C:\WINDOWS\system32\GLU32.dll > 0x51000000 - 0x51044000 C:\WINDOWS\system32\DDRAW.dll > 0x728A0000 - 0x728A6000 C:\WINDOWS\system32\DCIMAN32.dll > 0x6D180000 - 0x6D1D0000 C:\Program > Files\Java\j2re1.4.0\bin\fontmanager.dll > 0x0AF80000 - 0x0B051000 C:\WINDOWS\system32\mxicd.dll > 0x0B180000 - 0x0B18E000 C:\Program > Files\Together4.2\bin\win32\dl.dll > 0x77920000 - 0x77943000 C:\WINDOWS\system32\imagehlp.dll > 0x72A00000 - 0x72A2D000 C:\WINDOWS\system32\DBGHELP.dll > 0x690A0000 - 0x690AB000 C:\WINDOWS\system32\PSAPI.DLL > > Local Time = Tue Apr 09 18:15:07 2002 > Elapsed Time = 2 > # > # The exception above was detected in native code outside the VM > # > # Java VM: Java HotSpot(TM) Client VM (1.4.0-b92 mixed mode) > # > # An error report file has been saved as hs_err_pid1568.log. > # Please refer to the file for further information. > # > > > _______________________________________________ > gl4java-usergroup mailing list > gl4...@li... > https://lists.sourceforge.net/lists/listinfo/gl4java-usergroup |
From: Byron W. <bsl...@mi...> - 2002-04-10 01:36:45
|
Hi All, I am atempting to get fullscreen mode (jdk 1.4) to work with gl4java 2.8 with no luck. I compiled the files from the F.A.Q at jausoft : "gearRenderer.java" and "gearsFullScreen.java". My System spec: IBM Thinkpad T21 750Mhz 256MB Ram S3 Savage/IX 8MB video card. The JVM crashes with the following error: isFullScreenSupported: true An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0xAFF3DC5 Function=[Unknown.] Library=C:\WINDOWS\system32\mxicd.dll NOTE: We are unable to locate the function name symbol for the error just occurred. Please refer to release documentation for possible reason and solutions. Current Java thread: at gl4java.GLContext.openOpenGLNative(Native Method) at gl4java.GLContext.gljInit(GLContext.java:1996) - locked <02A2D580> (a gl4java.GLContext) at gl4java.GLContext.createGLContext(GLContext.java:1942) at gl4java.GLContext.<init>(GLContext.java:1161) at gl4java.GLContext.<init>(GLContext.java:1251) at gl4java.awt.GLCanvas.paint(GLCanvas.java:444) at sun.awt.RepaintArea.paint(Unknown Source) at sun.awt.windows.WComponentPeer.handleEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) Dynamic libraries: 0x00400000 - 0x00406000 C:\WINDOWS\system32\java.exe 0x77F80000 - 0x77FFB000 C:\WINDOWS\System32\ntdll.dll 0x77DB0000 - 0x77E0B000 C:\WINDOWS\system32\ADVAPI32.dll 0x77E80000 - 0x77F35000 C:\WINDOWS\system32\KERNEL32.DLL 0x77D40000 - 0x77DAC000 C:\WINDOWS\system32\RPCRT4.DLL 0x78000000 - 0x78046000 C:\WINDOWS\system32\MSVCRT.dll 0x6D330000 - 0x6D442000 C:\Program Files\Java\j2re1.4.0\bin\client\jvm.dll 0x77E10000 - 0x77E74000 C:\WINDOWS\system32\USER32.dll 0x77F40000 - 0x77F7C000 C:\WINDOWS\system32\GDI32.DLL 0x77570000 - 0x775A0000 C:\WINDOWS\system32\WINMM.dll 0x75E60000 - 0x75E7A000 C:\WINDOWS\System32\IMM32.DLL 0x6D1D0000 - 0x6D1D7000 C:\Program Files\Java\j2re1.4.0\bin\hpi.dll 0x6D300000 - 0x6D30D000 C:\Program Files\Java\j2re1.4.0\bin\verify.dll 0x6D210000 - 0x6D228000 C:\Program Files\Java\j2re1.4.0\bin\java.dll 0x6D320000 - 0x6D32D000 C:\Program Files\Java\j2re1.4.0\bin\zip.dll 0x6D000000 - 0x6D0F6000 C:\Program Files\Java\j2re1.4.0\bin\awt.dll 0x77800000 - 0x7781D000 C:\WINDOWS\system32\WINSPOOL.DRV 0x77A50000 - 0x77B3A000 C:\WINDOWS\system32\ole32.dll 0x10000000 - 0x1006C000 C:\Program Files\Java\j2re1.4.0\bin\GL4JavaJauGljJNI14.dll 0x6D230000 - 0x6D235000 C:\Program Files\Java\j2re1.4.0\bin\jawt.dll 0x69510000 - 0x695D7000 C:\WINDOWS\system32\OPENGL32.DLL 0x6FAC0000 - 0x6FADF000 C:\WINDOWS\system32\GLU32.dll 0x51000000 - 0x51044000 C:\WINDOWS\system32\DDRAW.dll 0x728A0000 - 0x728A6000 C:\WINDOWS\system32\DCIMAN32.dll 0x6D180000 - 0x6D1D0000 C:\Program Files\Java\j2re1.4.0\bin\fontmanager.dll 0x0AF80000 - 0x0B051000 C:\WINDOWS\system32\mxicd.dll 0x0B180000 - 0x0B18E000 C:\Program Files\Together4.2\bin\win32\dl.dll 0x77920000 - 0x77943000 C:\WINDOWS\system32\imagehlp.dll 0x72A00000 - 0x72A2D000 C:\WINDOWS\system32\DBGHELP.dll 0x690A0000 - 0x690AB000 C:\WINDOWS\system32\PSAPI.DLL Local Time = Tue Apr 09 18:15:07 2002 Elapsed Time = 2 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.0-b92 mixed mode) # # An error report file has been saved as hs_err_pid1568.log. # Please refer to the file for further information. # |