Skip to content

Determinant fix #167

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 11 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Next Next commit
Fix JogAmp JOGL 2.x.x -> 2.3.2 API changes
Signed-off-by: Xerxes Rånby <xerxes@gudinna.com>
  • Loading branch information
xranby committed Jan 14, 2016
commit e6794ae4e605a216fcf7cd83cd748a0e101e0553
4 changes: 2 additions & 2 deletions src/gov/nasa/worldwind/render/DrawContextImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,12 @@ public final GLContext getGLContext()

public final int getDrawableHeight()
{
return this.getGLDrawable().getHeight();
return this.getGLDrawable().getSurfaceHeight();
}

public final int getDrawableWidth()
{
return this.getGLDrawable().getWidth();
return this.getGLDrawable().getSurfaceWidth();
}

public final GLDrawable getGLDrawable()
Expand Down
1 change: 0 additions & 1 deletion src/gov/nasa/worldwind/render/TextRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -1951,7 +1951,6 @@ public void run() {

@Override
public void dispose(GLAutoDrawable drawable) {
glu.destroy();
glu=null;
frame=null;
}
Expand Down