- Timestamp:
- 06/19/11 19:57:32 (11 months ago)
- Parents:
- cb5297d42f18823d3b05ce472cd6328700f52241
- git-committer:
- Robin Gareus <robin@gareus.org> / 2011-06-19T21:57:32Z+0200
- Files:
-
- 1 modified
-
InOutExpositor/oClientP.pde (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
InOutExpositor/oClientP.pde
rcb5297d r3e73eb7 75 75 // URL encode spaces 76 76 String lin = login.replace(' ','+'); 77 String imPath = previewFilesAddress + lin + ".png ";77 String imPath = previewFilesAddress + lin + ".png?timeout=500"; 78 78 if (vImID>=0) { 79 79 print("discarding prev image request: "+login+": "+vImID+"\n") ; … … 95 95 void traceImage(float a, float b, float w, float h) { 96 96 if (vImID >=0) { 97 vIm[curr] = loader.getImage(vImID); 98 if (vIm[curr] != null) { 97 PImage tmpIm ; 98 tmpIm = loader.getImage(vImID); 99 if (tmpIm != null) { 99 100 print("Image ID: "+vImID+" loaded."); 100 101 loader.delImage(vImID); 101 102 vImID=-1; 103 vIm[curr]=tmpIm; 102 104 } 103 105 }
