Changeset 173 for trunk/src/helpers/gpih.c
- Timestamp:
- Jun 14, 2002, 12:19:57 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/gpih.c
r172 r173 2354 2354 *@@changed V0.9.16 (2001-10-15) [umoeller]: added pptlLowerLeft 2355 2355 *@@changed V0.9.16 (2001-10-15) [umoeller]: fixed inclusive/exclusive confusion (sigh...) 2356 *@@changed V0.9.19 (2002-06-13) [umoeller]: fixed funny colors when scaling 2356 2357 */ 2357 2358 … … 2409 2410 // GpiErase(hpsMem); 2410 2411 2412 // V0.9.19 (2002-06-13) [umoeller]: 2413 // use BBO_IGNORE instead of BBO_OR or we get funny colors 2414 // when scaling down 2415 2411 2416 // work on the AND image 2412 2417 GpiWCBitBlt(hpsMem, // target … … 2415 2420 &aptl[0], // point array 2416 2421 ROP_SRCAND, // source AND target 2417 BBO_ OR);2422 BBO_IGNORE); // V0.9.19 (2002-06-13) [umoeller] 2418 2423 2419 2424 // paint the real image … … 2424 2429 &aptl[0], // point array 2425 2430 ROP_SRCPAINT, // source OR target 2426 BBO_ OR);2431 BBO_IGNORE); // V0.9.19 (2002-06-13) [umoeller] 2427 2432 2428 2433 GpiSetColor(hpsMem, lBkgndColor); … … 2436 2441 &aptl[0], // point array 2437 2442 ROP_SRCINVERT, 2438 BBO_ OR);2443 BBO_IGNORE); // V0.9.19 (2002-06-13) [umoeller] 2439 2444 2440 2445 brc = TRUE;
Note:
See TracChangeset
for help on using the changeset viewer.