home *** CD-ROM | disk | FTP | other *** search
/ Computer Panoráma / computer_panorama_1997-12-hibas.iso / SHARE / GRAPH / PTC051.ZIP / EXAMPLES / RAND16.TXT < prev    next >
Text File  |  1997-09-04  |  2KB  |  48 lines

  1.                       =================================
  2.                       = random 16bit putpixel example =
  3.                       =================================
  4.  
  5.  
  6. Overview
  7. --------
  8.  
  9. This example draws random pixels to a 16bit RGB565 system memory surface
  10. and updates this surface to the display - converting to the output format
  11. if necessary. It demonstrates working in "virtual 16bit" with fuzzy
  12. 16bit mode setting.
  13.  
  14. NOTE: When from now on when i say "16bit" i mean "16bit RGB565" the major
  15.       16bit pixel format supported in PTC.
  16.  
  17.  
  18.  
  19. FUZZY16
  20. -------
  21.  
  22. FUZZY16 means "a mode close to 16bit". When FUZZY16 is specified the mode set
  23. attempts to set output formats in the following order:
  24.  
  25.    1. RGB565     (16bit)
  26.    2. BGR565     (16bit)
  27.    3. ARGB1555   (16bit "15bit")
  28.    4. ABGR1555   (16bit "15bit")
  29.    5. RGB888     (24bit)
  30.    6. BGR888     (24bit)
  31.    7. ARGB8888   (32bit)
  32.    8. RGBA8888   (32bit)
  33.    9. BGRA8888   (32bit)
  34.   10. ABGR8888   (32bit)
  35.   11. FAKEMODE2A (emulated truecolor)
  36.  
  37.  
  38. Note that this order is different to the order of a FUZZY32 modeset. When you
  39. want to work virtually in 16bit, make sure you specify FUZZY16 explicity:
  40. "PTC ptc(320,200,FUZZY16)" because if you just go: "PTC ptc(320,200)" it
  41. defaults to FUZZY32, which is not efficient when you are working virtually
  42. in 16bit.
  43.  
  44.  
  45. Finally, the function RGB16 used to pack the pixel in is just the 16bit RGB565
  46. equivalent of the RGB32 function used in rand32. It simply packs three color
  47. chars r,g,b into a packed 16bit word.
  48.