We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexDiscussionGeneral Discussion,  Status › Processing 0109 has no goofy tag line
Page Index Toggle Pages: 1
Processing 0109 has no goofy tag line (Read 2273 times)
Processing 0109 has no goofy tag line
Mar 22nd, 2006, 1:43am
 
but is now available from the download page...


ABOUT REV 0109 - 21 March 2006

Lots of bug fixes, in particular for Windows QuickTime and the
shell script for Linux.


[ bug fixes ]

+ fix more issues with QuickTime on Windows. yet again, this should help
 the WinVDIG stuff, especially when using QuickTime 7.
 http://dev.processing.org/bugs/show_bug.cgi?id=299

+ change how the linux shell script works to better support situations
 where a parent folder of the processing app has spaces in the name.
 http://dev.processing.org/bugs/show_bug.cgi?id=298

+ fix the "strokeCap not available in P3D" error (again)
 http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1134011764

+ fix the weird error message that comes from loadImage("")
 http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Programs;action=display;num=1136487954

+ fixes contributed by willis morse to deal with memory wastefulness.
 these should help speed up some types of OPENGL and P3D mode sketches,
 thanks willis!

+ only create a single instance of the find/replace window, was
 creating excessive numbers of windows with multiple finds.
 http://dev.processing.org/bugs/show_bug.cgi?id=307

+ disabled resizing of the color picker window so that it doesn't
 inadvertently disappear.
Re: Processing 0109 has no goofy tag line
Reply #1 - Mar 22nd, 2006, 11:28pm
 
Hey, hate to bring up that color picker problem again, but in 0109 i see you disabled resize of window and that would fix the problem but color picker is grey from the start now.
Re: Processing 0109 has no goofy tag line
Reply #2 - Mar 23rd, 2006, 12:17am
 
wah, really? hrm.. what platform are you on? with or without java?
Re: Processing 0109 has no goofy tag line
Reply #3 - Mar 23rd, 2006, 3:21am
 
bummer, casey has just confirmed. i'll get it fixed asap:
http://dev.processing.org/bugs/show_bug.cgi?id=308

seems to be a windows issue since it's ok on the mac, not sure about linux.
Re: Processing 0109 has no goofy tag line
Reply #4 - Mar 23rd, 2006, 5:03pm
 
loaded it on my Linux box and no color picker problems.  Looks like it's just Windows. Sad
Re: Processing 0109 has no goofy tag line
Reply #5 - Mar 23rd, 2006, 5:22pm
 
the bug report has been updated, we're fixed for 0111.
Re: Processing 0109 has no goofy tag line
Reply #6 - Mar 23rd, 2006, 7:03pm
 
fry wrote on Mar 22nd, 2006, 1:43am:
ABOUT REV 0109 - 21 March 2006

+ fix the "strokeCap not available in P3D" error (again)
 http://processing.org/discourse/yabb_beta/YaBB.cgi?num=1134011764


I think the error that was mentioned and which I'm still getting with 109 is "strokeCap not available with OPENGL".
Re: Processing 0109 has no goofy tag line
Reply #7 - Mar 23rd, 2006, 8:52pm
 
could you post a sketch that gives this error? use tools->archive sketch and post the resulting zip file.
Re: Processing 0109 has no goofy tag line
Reply #8 - Mar 24th, 2006, 4:15pm
 
sorry, i can't figure out how to post a file but there's not much to look at anyway, even the following code throws the error for me.  This only happens on my work pc though, it works fine on at home.

Quote:

import processing.opengl.*;

void setup()
{
  size(100, 100, OPENGL);
}
Re: Processing 0109 has no goofy tag line
Reply #9 - Mar 24th, 2006, 4:18pm
 
i can't reproduce this.. this one is so obvious that i wouldn't have posted the release if it threw this error. i think you've got an errant copy of the opengl or core libraries somewhere in your libraries or sketchbook folder. for instance, if you exported something to an application that was a gl app, the old version of the opengl lib may be somehow getting picked up by p5.
Re: Processing 0109 has no goofy tag line
Reply #10 - Mar 24th, 2006, 4:33pm
 
hmmm, i don't think that's it.  I just received a brand new machine at work and loaded 108 on then 109. I got the error with both versions and only 109 exists on my machine now.  Is there another area where p5 could be looking for the lib other than the libraries folder?
Re: Processing 0109 has no goofy tag line
Reply #11 - Mar 24th, 2006, 6:26pm
 
again, the sketchbook folder.
Re: Processing 0109 has no goofy tag line
Reply #12 - Mar 24th, 2006, 6:52pm
 
sorry, missed that part/temporarily brain dead... there were versions located in some application folders but I deleted them and restarted p5 and it still throws the error.


java.lang.RuntimeException: java.lang.RuntimeException: strokeCap() not available with OPENGL

at processing.opengl.PGraphicsGL.requestDisplay(PGraphicsGL.java:222)

at processing.core.PApplet.run(PApplet.java:951)

at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.RuntimeException: strokeCap() not available with OPENGL

at processing.opengl.PGraphicsGL.strokeCap(PGraphicsGL.java:1525)

at processing.core.PGraphics.defaults(PGraphics.java:429)

at processing.core.PGraphics3.defaults(PGraphics3.java:448)

at processing.core.PApplet.size(PApplet.java:729)

at Temporary_6549_9484.setup(Temporary_6549_9484.java:5)

at processing.core.PApplet.display(PApplet.java:1050)

at processing.opengl.PGraphicsGL$1.display(PGraphicsGL.java:117)

at net.java.games.jogl.impl.GLDrawableHelper.display(GLDrawableHelper.java:74)

at net.java.games.jogl.GLCanvas$DisplayAction.run(GLCanvas.java:249)

at net.java.games.jogl.impl.GLContext.invokeGL(GLContext.java:294)

at net.java.games.jogl.impl.windows.WindowsOnscreenGLContext.invokeGL(WindowsOnscre
enGLContext.java:76)

at net.java.games.jogl.GLCanvas$DisplayOnEventDispatchThreadAction.run(GLCanvas.jav
a:266)

at java.awt.event.InvocationEvent.dispatch(Unknown Source)

at java.awt.EventQueue.dispatchEvent(Unknown Source)

at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)

at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)

at java.awt.EventDispatchThread.pumpEvents(Unknown Source)

at java.awt.EventDispatchThread.pumpEvents(Unknown Source)

at java.awt.EventDispatchThread.run(Unknown Source)

Re: Processing 0109 has no goofy tag line
Reply #13 - Mar 24th, 2006, 8:09pm
 
that looks as though you have an ancient version of core.jar, or at least PGraphics, around somewhere. the PGraphicsGL is correct, but that's not the right line number in PGraphics for the defaults, and it's waay off, suggesting that it's a pretty old version of PGraphics.

there are issues with old jar files getting picked up in the sketchbook and causing conflicts, but that's a separate bug (not in the bugs db yet, but on my todo list).
Page Index Toggle Pages: 1