X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Fplat%2FOpenGL.java;h=b8524375a770dc661536616143f2d5e171c34594;hb=05d23fde131a7d19b378c632c6cc6b7924d8ab4d;hp=5b9590afd69fda6408c10307f6c893b74a1eebff;hpb=297fdbde87e6db4732448a0950d1141c7265c169;p=org.ibex.core.git diff --git a/src/org/ibex/plat/OpenGL.java b/src/org/ibex/plat/OpenGL.java index 5b9590a..b852437 100644 --- a/src/org/ibex/plat/OpenGL.java +++ b/src/org/ibex/plat/OpenGL.java @@ -143,7 +143,7 @@ abstract class OpenGL { public void deleteTexture(final int tex) { // CHECKME: Is this safe to do from finalize()? // natDeleteTexture MUST be run from the message queue thread - Scheduler.add(new Callable() { public Object run(Object o) { natDeleteTexture(tex); return null; }}); + Platform.Scheduler.add(new Callable() { public Object run(Object o) { natDeleteTexture(tex); return null; }}); } private static abstract class GLPicture {