So ich habe mich mal an SSE versucht.
Es scheint zu funktionieren (hab jetzt keine Bilder wo ichs richtig testen könnte), aber wie schnell/langsam das ist und ob der
Code wirklich fehlerfrei ist kann ich nicht sagen. Habe bisher noch nie was mit SSE gemacht.
Und das Bitmap sollte ein Vielfaches von 4 Pixeln groß sein, sonst knallts wahrscheinlich bzw. man müsste das abfangen.
Delphi-Quellcode:
function IsPartlyTransparent(fromScanline: Pointer; toScanline: Pointer): Boolean;
const pattern:
Array[0..3]
of Cardinal = ($FF000000, $FF000000, $FF000000, $FF000000);
label schleife, transparent, ende;
var IsTransparent:
Array[0..15]
of Byte;
// "GigaBool" (128 Bit)
asm
movups xmm2, pattern
schleife:
movups xmm1, [eax]
ANDPS xmm1, xmm2
CMPEQPS xmm1, xmm2
movntps IsTransparent, xmm1
cmp dword ptr IsTransparent, 0
jz transparent
add eax, $10
cmp eax, edx
jb schleife
mov Result, false
jmp ende
transparent:
mov Result, true
ende:
end;
Aufruf:
IsPartlyTransparent(bmp.ScanLine[bmp.Height-1],bmp.ScanLine[0])
Du kannst ja einfach mal schauen was dabei rum kommt.
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."