mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Comments
This commit is contained in:
parent
9f7e0978a9
commit
e6df3ab23a
1 changed files with 2 additions and 2 deletions
|
@ -1431,7 +1431,7 @@ inline u32 TfmtRawToFullAlpha(GETextureFormat fmt) {
|
|||
}
|
||||
|
||||
// TODO: SSE/SIMD
|
||||
// At least on x86, compiler actually parallelizes these pretty well.
|
||||
// At least on x86, compiler actually SIMDs these pretty well.
|
||||
void CopyAndSumMask16(u16 *dst, const u16 *src, int width, u32 *outMask) {
|
||||
u16 mask = 0xFFFF;
|
||||
for (int i = 0; i < width; i++) {
|
||||
|
@ -1491,7 +1491,7 @@ void TextureCacheCommon::DecodeTextureLevel(u8 *out, int outPitch, GETextureForm
|
|||
case GE_CMODE_16BIT_ABGR4444:
|
||||
{
|
||||
if (clutAlphaLinear_ && mipmapShareClut && !expandTo32bit) {
|
||||
// We don't bother with fullalpha here
|
||||
// We don't bother with fullalpha here (clutAlphaLinear_)
|
||||
// Here, reverseColors means the CLUT is already reversed.
|
||||
if (reverseColors) {
|
||||
for (int y = 0; y < h; ++y) {
|
||||
|
|
Loading…
Add table
Reference in a new issue