Revision: 5136 http://sourceforge.net/p/tigervnc/code/5136 Author: bphinz Date: 2013-10-03 18:52:30 +0000 (Thu, 03 Oct 2013) Log Message: ----------- Applied DRC's patch to fix broken RRE decoder in java client
Modified Paths: -------------- trunk/java/com/tigervnc/rfb/RREDecoder.java Modified: trunk/java/com/tigervnc/rfb/RREDecoder.java =================================================================== --- trunk/java/com/tigervnc/rfb/RREDecoder.java 2013-09-19 09:11:10 UTC (rev 5135) +++ trunk/java/com/tigervnc/rfb/RREDecoder.java 2013-10-03 18:52:30 UTC (rev 5136) @@ -38,7 +38,8 @@ int y = is.readU16(); int w = is.readU16(); int h = is.readU16(); - handler.fillRect(new Rect(x, y, w, h), pix); + handler.fillRect(new Rect(r.tl.x + x, r.tl.y + y, + r.tl.x + x + w, r.tl.y + y + h), pix); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel processors and coprocessors. See abstracts and register > http://pubads.g.doubleclick.net/gampad/clk?id=60134791&iu=/4140/ostg.clktrk _______________________________________________ Tigervnc-commits mailing list Tigervnc-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/tigervnc-commits