VirtualBox

儲存庫 vbox 的更動 65305


忽略:
時間撮記:
2017-1-16 上午08:12:05 (8 年 以前)
作者:
vboxsync
訊息:

VMSVGA/Cursor: 1-bit XOR conversion fix. Multi-bit AND mask conversion hacks.

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp

    r65303 r65305  
    24462446            }
    24472447            break;
     2448        /* Should take the XOR mask into account for the multi-bit AND mask. */
    24482449        case 8:
    24492450            for (uint32_t y = 0; y < cy; y++)
     
    24552456                    do
    24562457                    {
    2457                         if (pbSrc[x])
     2458                        uintptr_t const idxPal = pbSrc[x] * 3;
     2459                        if ((  pThis->last_palette[idxPal + 2]
     2460                             | pThis->last_palette[idxPal + 1]
     2461                             | pThis->last_palette[idxPal + 0]) > 0xfc)
    24582462                            bDst |= fBit;
    24592463                        fBit <<= 1;
     
    24752479                    do
    24762480                    {
    2477                         if (pbSrc[x * 2] || (pbSrc[x * 2 + 1] & 0x7f))
     2481                        if ((pbSrc[x * 2] | (pbSrc[x * 2 + 1] & 0x7f)) >= 0xfc)
    24782482                            bDst |= fBit;
    24792483                        fBit <<= 1;
     
    24952499                    do
    24962500                    {
    2497                         if (pbSrc[x * 2] || pbSrc[x * 2 + 1])
     2501                        if ((pbSrc[x * 2] | pbSrc[x * 2 + 1]) >= 0xfc)
    24982502                            bDst |= fBit;
    24992503                        fBit <<= 1;
     
    25152519                    do
    25162520                    {
    2517                         if (pbSrc[x * 3] || pbSrc[x * 3 + 1] || pbSrc[x * 3 + 2])
     2521                        if ((pbSrc[x * 3] | pbSrc[x * 3 + 1] | pbSrc[x * 3 + 2]) >= 0xfc)
    25182522                            bDst |= fBit;
    25192523                        fBit <<= 1;
     
    25342538                    do
    25352539                    {
    2536                         if (pbSrc[x * 4] || pbSrc[x * 4 + 1] || pbSrc[x * 4 + 2] || pbSrc[x * 4 + 3])
     2540                        if ((pbSrc[x * 4] | pbSrc[x * 4 + 1] | pbSrc[x * 4 + 2] | pbSrc[x * 4 + 3]) >= 0xfc)
    25372541                            bDst |= fBit;
    25382542                        fBit <<= 1;
     
    25582562            for (uint32_t y = 0; y < cy; y++)
    25592563            {
    2560                 for (uint32_t x = 0; x < cx; x++)
    2561                     *pu32Dst++ = ASMBitTest(pbSrc, x) ? UINT32_C(0x00ffffff) : 0;
     2564                for (uint32_t x = 0; x < cx; )
     2565                {
     2566                    /* most significant bit is the left most one. */
     2567                    uint8_t bSrc = pbSrc[x / 8];
     2568                    do
     2569                    {
     2570                        *pu32Dst++ = bSrc & 0x80 ? UINT32_C(0x00ffffff) : 0;
     2571                        bSrc <<= 1;
     2572                        x++;
     2573                    } while ((x & 7) && x < cx);
     2574                }
    25622575                pbSrc += cbSrcXorLine;
    25632576            }
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette