summaryrefslogtreecommitdiffstats
path: root/src/newt/classes/jogamp
diff options
context:
space:
mode:
Diffstat (limited to 'src/newt/classes/jogamp')
-rw-r--r--src/newt/classes/jogamp/newt/WindowImpl.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newt/classes/jogamp/newt/WindowImpl.java b/src/newt/classes/jogamp/newt/WindowImpl.java
index e1636ffcd..e5dd783ca 100644
--- a/src/newt/classes/jogamp/newt/WindowImpl.java
+++ b/src/newt/classes/jogamp/newt/WindowImpl.java
@@ -231,7 +231,7 @@ public abstract class WindowImpl implements Window, NEWTEventConsumer
* Notifies the receiver to preserve resources (GL, ..)
* for the next destroy*() calls (only).
*/
- void setPreserveResourcesAtDestroy();
+ void preserveGLStateAtDestroy();
/**
* Invoked before Window destroy action,
@@ -966,7 +966,7 @@ public abstract class WindowImpl implements Window, NEWTEventConsumer
protected void destroy(boolean preserveResources) {
if( preserveResources && null != WindowImpl.this.lifecycleHook ) {
- WindowImpl.this.lifecycleHook.setPreserveResourcesAtDestroy();
+ WindowImpl.this.lifecycleHook.preserveGLStateAtDestroy();
}
destroy();
}