Issue #358 Fixed merge errors when merging core_exp into ss_sync

Former-commit-id: 2ef208b263 [formerly 3fe183277b] [formerly 2ef208b263 [formerly 3fe183277b] [formerly e3d6962fe6 [formerly e8846fa2b5aa1ef2972f134a683246bc275a8067]]]
Former-commit-id: e3d6962fe6
Former-commit-id: 338f80fa87 [formerly 878de45ee6]
Former-commit-id: 9f72069996
This commit is contained in:
Max Schenkelberg 2012-03-30 10:51:31 -05:00 committed by Steve Harris
parent 491aa53a0c
commit 4ddcccc3c7
5 changed files with 4 additions and 12 deletions

View file

@ -50,12 +50,6 @@ public interface IGLTarget extends IGraphicsTarget {
*/
public abstract void releaseContext();
/**
*
* @return
*/
public abstract void releaseContext();
/**
* Get the modle view matrix settings
*

View file

@ -219,6 +219,7 @@ public abstract class AbstractGLImage implements IImage {
rbuf = null;
}
throw new VizException(errorMessage);
}
}
/*
@ -261,8 +262,10 @@ public abstract class AbstractGLImage implements IImage {
GL.GL_NEAREST);
}
return true;
}
return false;
}
/*
* (non-Javadoc)
*

View file

@ -203,9 +203,6 @@ public class GLCMTextureData implements IImageCacheable {
public double getValue(int x, int y) {
if (!isStaged() && isLoaded()) {
GL gl = GLU.getCurrentGL();
if (gl == null || data == null) {
return Double.NaN;
}
int textureStorageType = getTextureStorageType();
int copybackTextureType = data.getCopyBackTextureType();
Buffer copybackBuffer = data.getCopybackBuffer();

View file

@ -552,7 +552,6 @@ public class GLTarget implements IGLTarget {
theContext.destroyContext();
if (theCanvas != null && theCanvas.isDisposed() == false) {
theCanvas.removeListener(SWT.Resize, this.canvasResizeListener);
}
extensionManager.dispose();

View file

@ -846,8 +846,7 @@ public class RadarGraphicFunctions {
}
private static Document loadSVG(String plotModelFile) throws VizException {
Document document = null;
// document = docMap.get(plotModelFile);
Document document = docMap.get(plotModelFile);
if (document == null) {
String parser = XMLResourceDescriptor.getXMLParserClassName();