/[rdesktop]/sourceforge.net/trunk/rdesktop/orders.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/orders.c

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

revision 17 by matty, Thu Sep 28 15:54:11 2000 UTC revision 20 by matty, Mon Oct 16 07:37:52 2000 UTC
# Line 722  static void process_fontcache(STREAM s) Line 722  static void process_fontcache(STREAM s)
722  {  {
723          HGLYPH bitmap;          HGLYPH bitmap;
724          uint8 font, nglyphs;          uint8 font, nglyphs;
725          uint16 character, baseline, width, height;          uint16 character, offset, baseline, width, height;
726          uint8 *data, *rev_data, in, out;          uint8 *data, *rev_data, in, out;
727          int i, j, datasize;          int i, j, datasize;
728    
# Line 734  static void process_fontcache(STREAM s) Line 734  static void process_fontcache(STREAM s)
734          for (i = 0; i < nglyphs; i++)          for (i = 0; i < nglyphs; i++)
735          {          {
736                  in_uint16_le(s, character);                  in_uint16_le(s, character);
737                  in_uint8s(s, 2); /* unknown */                  in_uint16_le(s, offset);
738                  in_uint16_le(s, baseline);                  in_uint16_le(s, baseline);
739                  in_uint16_le(s, width);                  in_uint16_le(s, width);
740                  in_uint16_le(s, height);                  in_uint16_le(s, height);
# Line 763  static void process_fontcache(STREAM s) Line 763  static void process_fontcache(STREAM s)
763                  bitmap = ui_create_glyph(width, height, rev_data);                  bitmap = ui_create_glyph(width, height, rev_data);
764                  xfree(rev_data);                  xfree(rev_data);
765    
766                  cache_put_font(font, character, baseline, width, height, bitmap);                  cache_put_font(font, character, offset, baseline,
767                                    width, height, bitmap);
768          }          }
769  }  }
770    

Legend:
Removed from v.17  
changed lines
  Added in v.20

  ViewVC Help
Powered by ViewVC 1.1.26