home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / sys / amiga / programm / 17932 < prev    next >
Encoding:
Text File  |  1992-12-29  |  1.8 KB  |  39 lines

  1. Newsgroups: comp.sys.amiga.programmer
  2. Path: sparky!uunet!portal!danb
  3. From: danb@shell.portal.com (Dan E Babcock)
  4. Subject: Re: Chunky Pixels vs. Bitplanes (was: Chunky Chip Set...)
  5. Message-ID: <C01MuB.G1J@unix.portal.com>
  6. Sender: news@unix.portal.com
  7. Nntp-Posting-Host: jobe
  8. Organization: Portal Communications Company -- 408/973-9111 (voice) 408/973-8091 (data)
  9. References: <1992Dec29.010853.12840@mpifr-bonn.mpg.de> <C00nKw.Lx7@unix.portal.com> <1992Dec29.114206.2227@mpifr-bonn.mpg.de>
  10. Date: Tue, 29 Dec 1992 23:06:11 GMT
  11. Lines: 26
  12.  
  13. In article <1992Dec29.114206.2227@mpifr-bonn.mpg.de> mlelstv@speckled.mpifr-bonn.mpg.de (Michael van Elst) writes:
  14. >In <C00nKw.Lx7@unix.portal.com> danb@shell.portal.com (Dan E Babcock) writes:
  15. >>mask, dest, and dest) per word transferred. On a TI graphics chip it requires
  16. >>only 2 accesses, source and dest, because it can avoid disturbing the destination
  17. >>byte if the source byte is 0 (transparent). It's inherently twice as fast.
  18. >
  19. >>Dan
  20. >
  21. >You meant, the TI chip performs the operation twice as fast as our blitter.
  22. >True (besides that it is even faster because of a higher clock).
  23. >
  24. >With planes you could read a word of each plane (at that time OR them together
  25. >in a register) read the destination if the generated mask is nonzero and
  26. >different from all-one (AND it at that time with the mask) and write it back
  27. >(just if the mask was nonzero).
  28.  
  29. That's a huge amount of additional hardware (maybe that's why it isn't
  30. implemented in the Amiga blitter, eh?). And it gets worse when you add buffers
  31. to take advantage of page mode, which must be duplicated for each bitplane.
  32. Ok, here's another thing to chew on: VRAMs have a pixel-expand feature which
  33. can effectively quadruple the data rate for monochrome fills (for example
  34. text drawing or polygon drawing). Bitplanes need not apply.
  35.  
  36. Dan
  37.  
  38.  
  39.