Ignore:
Timestamp:
Jun 14, 2002, 12:19:57 PM (23 years ago)
Author:
umoeller
Message:

Misc updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/gpih.c

    r172 r173  
    23542354 *@@changed V0.9.16 (2001-10-15) [umoeller]: added pptlLowerLeft
    23552355 *@@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
    23562357 */
    23572358
     
    24092410        // GpiErase(hpsMem);
    24102411
     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
    24112416        // work on the AND image
    24122417        GpiWCBitBlt(hpsMem,     // target
     
    24152420                    &aptl[0],   // point array
    24162421                    ROP_SRCAND,   // source AND target
    2417                     BBO_OR);
     2422                    BBO_IGNORE);        // V0.9.19 (2002-06-13) [umoeller]
    24182423
    24192424        // paint the real image
     
    24242429                        &aptl[0],   // point array
    24252430                        ROP_SRCPAINT,    // source OR target
    2426                         BBO_OR);
     2431                        BBO_IGNORE);        // V0.9.19 (2002-06-13) [umoeller]
    24272432
    24282433        GpiSetColor(hpsMem, lBkgndColor);
     
    24362441                    &aptl[0],   // point array
    24372442                    ROP_SRCINVERT,
    2438                     BBO_OR);
     2443                    BBO_IGNORE);        // V0.9.19 (2002-06-13) [umoeller]
    24392444
    24402445        brc = TRUE;
Note: See TracChangeset for help on using the changeset viewer.