Issue #358 Fixed merge errors when merging core_exp into ss_sync

Former-commit-id: 9126809973 [formerly e03ee60c75] [formerly 1294fa0ca1] [formerly 9126809973 [formerly e03ee60c75] [formerly 1294fa0ca1] [formerly 90a5c20b5a [formerly 1294fa0ca1 [formerly bd93246cccd1b123598006d7343eac265392695d]]]]
Former-commit-id: 90a5c20b5a
Former-commit-id: 937f4b6aa3 [formerly 51a826384e] [formerly 2e1507a1308f6373329e72eb1d9ccc52bd416fb3 [formerly 65c864aff2]]
Former-commit-id: 7d5e1d641386de98262499c8ba677d6c85554bf1 [formerly 72a27b7ae0]
Former-commit-id: 33d08f1496
This commit is contained in:
Max Schenkelberg 2012-03-30 10:51:31 -05:00 committed by Steve Harris
parent 0cf19dc505
commit f0a90ad028
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();