Issue #358 Fixed merge errors when merging core_exp into ss_sync
Former-commit-id:9126809973
[formerlye03ee60c75
] [formerly1294fa0ca1
] [formerly9126809973
[formerlye03ee60c75
] [formerly1294fa0ca1
] [formerly90a5c20b5a
[formerly1294fa0ca1
[formerly bd93246cccd1b123598006d7343eac265392695d]]]] Former-commit-id:90a5c20b5a
Former-commit-id:937f4b6aa3
[formerly51a826384e
] [formerly 2e1507a1308f6373329e72eb1d9ccc52bd416fb3 [formerly65c864aff2
]] Former-commit-id: 7d5e1d641386de98262499c8ba677d6c85554bf1 [formerly72a27b7ae0
] Former-commit-id:33d08f1496
This commit is contained in:
parent
0cf19dc505
commit
f0a90ad028
5 changed files with 4 additions and 12 deletions
|
@ -50,12 +50,6 @@ public interface IGLTarget extends IGraphicsTarget {
|
|||
*/
|
||||
public abstract void releaseContext();
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public abstract void releaseContext();
|
||||
|
||||
/**
|
||||
* Get the modle view matrix settings
|
||||
*
|
||||
|
|
|
@ -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)
|
||||
*
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue