I am working on my app based on World Wind Java SDK in Eclipse. Like two weeks ago, I have started to get such error thrown every time I am trying to run the app:
A fatal error has been detected by the Java Runtime Environment:
EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x1a97d42a, pid=4136, tid=4888 JRE version: 6.0_31-b05 Java VM: Java HotSpot(TM) Client VM (20.6-b01 mixed mode windows-x86 ) Problematic frame: C [ig4icd32.dll+0x3d42a]
An error report file with more information is saved as:
C:\thesis\100GreatP\eclipse_ws\test\hs_err_pid4136.logIf you would like to submit a bug report, please visit:
[url]http://java.sun.com/webapps/bugreport/crash.jsp[/url] The crash happened outside the Java Virtual Machine in native code. See problematic frame for where to report the bug.
The funny thing is that this happens only if I am trying to display my newly made layer right when the app starts:
wwd.getModel().getLayers().add(GreatPlacesIcons);
wwd.addSelectListener(GreatPlacesIcons);
layers = new LayerViewDockable(wwd,"layers");
Once I make a comment on those lines of code above, the app will start correctly. Does anyone have an idea of what is going on here?