/[rdesktop]/sourceforge.net/trunk/rdesktop/bitmap.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/bitmap.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 649 by jsorg71, Thu Apr 15 17:28:30 2004 UTC revision 655 by stargo, Fri Apr 16 09:11:03 2004 UTC
# Line 330  bitmap_decompress2(uint8 * output, int w Line 330  bitmap_decompress2(uint8 * output, int w
330                                          insertmix = True;                                          insertmix = True;
331                                  break;                                  break;
332                          case 8: /* Bicolour */                          case 8: /* Bicolour */
333                                  colour1 = CVAL2(input);                                  memcpy(&colour1,&CVAL2(input),2);
334                          case 3: /* Colour */                          case 3: /* Colour */
335                                  colour2 = CVAL2(input);                                  memcpy(&colour2,&CVAL2(input),2);
336                                  break;                                  break;
337                          case 6: /* SetMix/Mix */                          case 6: /* SetMix/Mix */
338                          case 7: /* SetMix/FillOrMix */                          case 7: /* SetMix/FillOrMix */
339                                  mix = CVAL2(input);                                  memcpy(&mix,&CVAL2(input),2);
340                                  opcode -= 5;                                  opcode -= 5;
341                                  break;                                  break;
342                          case 9: /* FillOrMix_1 */                          case 9: /* FillOrMix_1 */
# Line 424  bitmap_decompress2(uint8 * output, int w Line 424  bitmap_decompress2(uint8 * output, int w
424                                          REPEAT(line[x] = colour2)                                          REPEAT(line[x] = colour2)
425                                          break;                                          break;
426                                  case 4: /* Copy */                                  case 4: /* Copy */
427                                          REPEAT(line[x] = CVAL2(input))                                          REPEAT(memcpy(&line[x],&CVAL2(input),2))
428                                          break;                                          break;
429                                  case 8: /* Bicolour */                                  case 8: /* Bicolour */
430                                          REPEAT                                          REPEAT

Legend:
Removed from v.649  
changed lines
  Added in v.655

  ViewVC Help
Powered by ViewVC 1.1.26