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

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

revision 527 by matthewc, Wed Oct 29 08:15:02 2003 UTC revision 536 by matthewc, Fri Oct 31 04:29:57 2003 UTC
# Line 207  make_colour(PixelColour pc) Line 207  make_colour(PixelColour pc)
207  }  }
208    
209  #define BSWAP16(x) { x = (((x & 0xff) << 8) | (x >> 8)); }  #define BSWAP16(x) { x = (((x & 0xff) << 8) | (x >> 8)); }
210  #define BSWAP24(x) { x = (((x & 0xff) << 16) | (x >> 16) | ((x >> 8) & 0xff00)); }  #define BSWAP24(x) { x = (((x & 0xff) << 16) | (x >> 16) | (x & 0xff00)); }
211  #define BSWAP32(x) { x = (((x & 0xff00ff) << 8) | ((x >> 8) & 0xff00ff)); \  #define BSWAP32(x) { x = (((x & 0xff00ff) << 8) | ((x >> 8) & 0xff00ff)); \
212                          x = (x << 16) | (x >> 16); }                          x = (x << 16) | (x >> 16); }
213    
# Line 245  translate8to16(uint8 * data, uint8 * out Line 245  translate8to16(uint8 * data, uint8 * out
245          while (out < end)          while (out < end)
246          {          {
247                  value = (uint16) g_colmap[*(data++)];                  value = (uint16) g_colmap[*(data++)];
248                    
249                  if (g_xserver_be)                  if (g_xserver_be)
250                  {                  {
251                          *(out++) = value >> 8;                          *(out++) = value >> 8;
# Line 268  translate8to24(uint8 * data, uint8 * out Line 268  translate8to24(uint8 * data, uint8 * out
268          while (out < end)          while (out < end)
269          {          {
270                  value = g_colmap[*(data++)];                  value = g_colmap[*(data++)];
271                    
272                  if (g_xserver_be)                  if (g_xserver_be)
273                  {                  {
274                          *(out++) = value >> 16;                          *(out++) = value >> 16;
# Line 408  translate15to32(uint16 * data, uint8 * o Line 408  translate15to32(uint16 * data, uint8 * o
408  }  }
409    
410  static void  static void
411  translate16to16(uint16 * data, uint16 * out, uint16 * end)  translate16to16(uint16 * data, uint8 * out, uint8 * end)
412  {  {
413            uint16 pixel;
414          uint16 value;          uint16 value;
415    
416          if (g_xserver_be)          while (out < end)
417          {          {
418                  while (out < end)                  pixel = *(data++);
419    
420                    if (g_host_be)
421                  {                  {
422                          value = *data;                          BSWAP16(pixel);
                         BSWAP16(value);  
                         *out = value;  
                         data++;  
                         out++;  
423                  }                  }
424    
425          }                  value = make_colour(split_colour16(pixel));
426          else  
427          {                  if (g_xserver_be)
                 while (out < end)  
428                  {                  {
429                          *out = *data;                          *(out++) = value >> 8;
430                          out++;                          *(out++) = value;
431                          data++;                  }
432                    else
433                    {
434                            *(out++) = value;
435                            *(out++) = value >> 8;
436                  }                  }
437          }          }
438  }  }
439    
   
440  static void  static void
441  translate16to24(uint16 * data, uint8 * out, uint8 * end)  translate16to24(uint16 * data, uint8 * out, uint8 * end)
442  {  {
# Line 480  translate16to32(uint16 * data, uint8 * o Line 481  translate16to32(uint16 * data, uint8 * o
481    
482                  if (g_host_be)                  if (g_host_be)
483                  {                  {
484                  BSWAP16(pixel)}                          BSWAP16(pixel);
485                    }
486    
487                  value = make_colour(split_colour16(pixel));                  value = make_colour(split_colour16(pixel));
488    
# Line 530  translate24to16(uint8 * data, uint8 * ou Line 532  translate24to16(uint8 * data, uint8 * ou
532  static void  static void
533  translate24to24(uint8 * data, uint8 * out, uint8 * end)  translate24to24(uint8 * data, uint8 * out, uint8 * end)
534  {  {
535            uint32 pixel;
536            uint32 value;
537    
538          while (out < end)          while (out < end)
539          {          {
540                  *(out++) = (*(data++));                  pixel = *(data++) << 16;
541                    pixel |= *(data++) << 8;
542                    pixel |= *(data++);
543    
544                    value = make_colour(split_colour24(pixel));
545                    
546                    if (g_xserver_be)
547                    {
548                            *(out++) = value >> 16;
549                            *(out++) = value >> 8;
550                            *(out++) = value;
551                    }
552                    else
553                    {
554                            *(out++) = value;
555                            *(out++) = value >> 8;
556                            *(out++) = value >> 16;
557                    }
558          }          }
559  }  }
560    
561  static void  static void
562  translate24to32(uint8 * data, uint8 * out, uint8 * end)  translate24to32(uint8 * data, uint8 * out, uint8 * end)
563  {  {
564            uint32 pixel;
565            uint32 value;
566    
567          while (out < end)          while (out < end)
568          {          {
569                    pixel = *(data++) << 16;
570                    pixel |= *(data++) << 8;
571                    pixel |= *(data++);
572    
573                    value = make_colour(split_colour24(pixel));
574    
575                  if (g_xserver_be)                  if (g_xserver_be)
576                  {                  {
577                          *(out++) = 0x00;                          *(out++) = value >> 24;
578                          *(out++) = *(data++);                          *(out++) = value >> 16;
579                          *(out++) = *(data++);                          *(out++) = value >> 8;
580                          *(out++) = *(data++);                          *(out++) = value;
581                  }                  }
582                  else                  else
583                  {                  {
584                          *(out++) = *(data++);                          *(out++) = value;
585                          *(out++) = *(data++);                          *(out++) = value >> 8;
586                          *(out++) = *(data++);                          *(out++) = value >> 16;
587                          *(out++) = 0x00;                          *(out++) = value >> 24;
588                  }                  }
589          }          }
590  }  }
# Line 591  translate_image(int width, int height, u Line 622  translate_image(int width, int height, u
622                                          translate16to24((uint16 *) data, out, end);                                          translate16to24((uint16 *) data, out, end);
623                                          break;                                          break;
624                                  case 16:                                  case 16:
625                                          translate16to16((uint16 *) data, (uint16 *) out,                                          translate16to16((uint16 *) data, out, end);
                                                         (uint16 *) end);  
626                                          break;                                          break;
627                          }                          }
628                          break;                          break;
# Line 700  ui_init(void) Line 730  ui_init(void)
730    
731                  g_visual = vi.visual;                  g_visual = vi.visual;
732                  g_owncolmap = False;                  g_owncolmap = False;
733                  calculate_shifts(vi.red_mask,   &g_red_shift_r,   &g_red_shift_l);                  calculate_shifts(vi.red_mask, &g_red_shift_r, &g_red_shift_l);
734                  calculate_shifts(vi.blue_mask,  &g_blue_shift_r,  &g_blue_shift_l);                  calculate_shifts(vi.blue_mask, &g_blue_shift_r, &g_blue_shift_l);
735                  calculate_shifts(vi.green_mask, &g_green_shift_r, &g_green_shift_l);                  calculate_shifts(vi.green_mask, &g_green_shift_r, &g_green_shift_l);
736          }          }
737    
# Line 819  ui_deinit(void) Line 849  ui_deinit(void)
849          g_display = NULL;          g_display = NULL;
850  }  }
851    
 #define NULL_POINTER_MASK       "\x80"  
 #define NULL_POINTER_DATA       "\x0\x0\x0"  
           
852  BOOL  BOOL
853  ui_create_window(void)  ui_create_window(void)
854  {  {
855            uint8 null_pointer_mask[1] = { 0x80 };
856            uint8 null_pointer_data[4] = { 0x00, 0x00, 0x00, 0x00 };
857          XSetWindowAttributes attribs;          XSetWindowAttributes attribs;
858          XClassHint *classhints;          XClassHint *classhints;
859          XSizeHints *sizehints;          XSizeHints *sizehints;
# Line 907  ui_create_window(void) Line 936  ui_create_window(void)
936          XSetWMProtocols(g_display, g_wnd, &g_kill_atom, 1);          XSetWMProtocols(g_display, g_wnd, &g_kill_atom, 1);
937    
938          /* create invisible 1x1 cursor to be used as null cursor */          /* create invisible 1x1 cursor to be used as null cursor */
939          g_null_cursor = ui_create_cursor(0, 0, 1, 1, NULL_POINTER_MASK, NULL_POINTER_DATA);          g_null_cursor = ui_create_cursor(0, 0, 1, 1, null_pointer_mask, null_pointer_data);
940    
941          return True;          return True;
942  }  }
# Line 916  void Line 945  void
945  ui_destroy_window(void)  ui_destroy_window(void)
946  {  {
947          ui_destroy_cursor(g_null_cursor);          ui_destroy_cursor(g_null_cursor);
948            
949          if (g_IC != NULL)          if (g_IC != NULL)
950                  XDestroyIC(g_IC);                  XDestroyIC(g_IC);
951    

Legend:
Removed from v.527  
changed lines
  Added in v.536

  ViewVC Help
Powered by ViewVC 1.1.26