mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-23 15:15:39 +00:00
Really fixed blit issue for capehill
This commit is contained in:
parent
e9c2dcdae8
commit
e25f4e507d
|
@ -443,18 +443,18 @@ do { \
|
||||||
/* Blend the RGB values of two pixels with an alpha value */
|
/* Blend the RGB values of two pixels with an alpha value */
|
||||||
#define ALPHA_BLEND_RGB(sR, sG, sB, A, dR, dG, dB) \
|
#define ALPHA_BLEND_RGB(sR, sG, sB, A, dR, dG, dB) \
|
||||||
do { \
|
do { \
|
||||||
dR = (Uint8)((((int)(sR-dR)*A)/255)+dR); \
|
dR = (Uint8)((((int)(sR-dR)*(int)A)/255)+dR); \
|
||||||
dG = (Uint8)((((int)(sG-dG)*A)/255)+dG); \
|
dG = (Uint8)((((int)(sG-dG)*(int)A)/255)+dG); \
|
||||||
dB = (Uint8)((((int)(sB-dB)*A)/255)+dB); \
|
dB = (Uint8)((((int)(sB-dB)*(int)A)/255)+dB); \
|
||||||
} while(0)
|
} while(0)
|
||||||
|
|
||||||
|
|
||||||
/* Blend the RGBA values of two pixels */
|
/* Blend the RGBA values of two pixels */
|
||||||
#define ALPHA_BLEND_RGBA(sR, sG, sB, sA, dR, dG, dB, dA) \
|
#define ALPHA_BLEND_RGBA(sR, sG, sB, sA, dR, dG, dB, dA) \
|
||||||
do { \
|
do { \
|
||||||
dR = (Uint8)((((int)(sR-dR)*sA)/255)+dR); \
|
dR = (Uint8)((((int)(sR-dR)*(int)sA)/255)+dR); \
|
||||||
dG = (Uint8)((((int)(sG-dG)*sA)/255)+dG); \
|
dG = (Uint8)((((int)(sG-dG)*(int)sA)/255)+dG); \
|
||||||
dB = (Uint8)((((int)(sB-dB)*sA)/255)+dB); \
|
dB = (Uint8)((((int)(sB-dB)*(int)sA)/255)+dB); \
|
||||||
dA = (Uint8)((int)sA+dA-((int)sA*dA)/255); \
|
dA = (Uint8)((int)sA+dA-((int)sA*dA)/255); \
|
||||||
} while(0)
|
} while(0)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue