Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (408)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Surface already locked?  (Read 442 times)
0 Members and 1 Guest are viewing this topic.
Offline Wizumwalt

Junior Member




Java games rock!


« Posted 2005-09-16 22:45:21 »

What does the following error mean?

---

Exception in thread "AWT-EventQueue-0" net.java.games.jogl.GLException: Surface
already locked
        at net.java.games.jogl.impl.windows.WindowsOnscreenGLContext.lockSurface
(WindowsOnscreenGLContext.java:165)
        at net.java.games.jogl.impl.windows.WindowsOnscreenGLContext.makeCurrent
(WindowsOnscreenGLContext.java:126)
        at net.java.games.jogl.impl.GLContext.invokeGL(GLContext.java:246)
        at net.java.games.jogl.impl.windows.WindowsOnscreenGLContext.invokeGL(Wi
ndowsOnscreenGLContext.java:79)
        at net.java.games.jogl.GLCanvas.maybeDoSingleThreadedWorkaround(GLCanvas
.java:236)
        at net.java.games.jogl.GLCanvas.display(GLCanvas.java:77)
        at gov.nasa.jsc.renderer.Renderer.clearScreen(Renderer.java:924)
        at gov.nasa.jsc.renderer.Renderer.init(Renderer.java:139)
        at net.java.games.jogl.impl.GLDrawableHelper.init(GLDrawableHelper.java:
68)
        at net.java.games.jogl.GLCanvas$InitAction.run(GLCanvas.java:242)
        at net.java.games.jogl.impl.windows.WindowsGLContext.makeCurrent(Windows
GLContext.java:171)
        at net.java.games.jogl.impl.windows.WindowsOnscreenGLContext.makeCurrent
(WindowsOnscreenGLContext.java:129)
        at net.java.games.jogl.impl.GLContext.invokeGL(GLContext.java:246)
        at net.java.games.jogl.impl.windows.WindowsOnscreenGLContext.invokeGL(Wi
ndowsOnscreenGLContext.java:76)
        at net.java.games.jogl.GLCanvas.maybeDoSingleThreadedWorkaround(GLCanvas
.java:236)
        at net.java.games.jogl.GLCanvas.reshape(GLCanvas.java:133)
        at java.awt.Component.setBounds(Unknown Source)
        at java.awt.BorderLayout.layoutContainer(Unknown Source)
        at java.awt.Container.layout(Unknown Source)
        at java.awt.Container.doLayout(Unknown Source)
        at java.awt.Container.validateTree(Unknown Source)

---

I get that error when I invoke the clearScreen() method as is below. I have the gldrawable as a class member so that I can access it and make calls from outside this class when I click buttons to clear my screen.

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
32  
33  
34  
35  
36  
37  
public class MyRenderer implements GLEventListener, MouseListener, MouseMotionListener, KeyListener
{
   private GLDrawable gldrawable = null;

   public void init(GLDrawable drawable) {
      GL gl = drawable.getGL();
      GLU glu = drawable.getGLU();
      this.gldrawable = drawable;
      ...
   }

   public void display(GLDrawable drawable) {
      GL gl = drawable.getGL();
      GLU glu = drawable.getGLU();
      this.gldrawable = drawable;
      ...
   }

   // I have a button that calls this to clear the screen.
  public void clearScreen() {
      //GL gl =  gldrawable.getGL();

      gldrawable.getGL().glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
      gldrawable.getGL().glClear(GL.GL_COLOR_BUFFER_BIT |                   GL.GL_DEPTH_BUFFER_BIT);

      // tried this, got no exceptions, but didn't clear the screen.
     //gl.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
     //gl.glClearDepth(1.0);
     //gl.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);
     //gl.glMatrixMode(GL.GL_MODELVIEW);
     //gl.glLoadIdentity();
   
      this.gldrawable.display();

      return;
   }
}
Offline Ken Russell

JGO Coder




Java games rock!


« Reply #1 - Posted 2005-09-17 01:23:21 »

You can only call OpenGL routines while your GLEventListener's callback methods are active on the stack. Put your call to clearScreen() into your display() callback and it will work fine.
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Try the Free Demo of Revenge of the Titans

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (126 views)
2013-05-17 21:29:12

alaslipknot (134 views)
2013-05-16 21:24:48

gouessej (164 views)
2013-05-16 00:53:38

gouessej (157 views)
2013-05-16 00:17:58

theagentd (169 views)
2013-05-15 15:01:13

theagentd (154 views)
2013-05-15 15:00:54

StreetDoggy (198 views)
2013-05-14 15:56:26

kutucuk (222 views)
2013-05-12 17:10:36

kutucuk (221 views)
2013-05-12 15:36:09

UnluckyDevil (225 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.12 seconds with 21 queries.