mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
ColorUtil: Amend function name casing
Makes the function names conform to our coding style.
This commit is contained in:
@ -40,7 +40,7 @@ static u32 Decode5A3(u16 val)
|
||||
return (a << 24) | (r << 16) | (g << 8) | b;
|
||||
}
|
||||
|
||||
void decode5A3image(u32* dst, const u16* src, int width, int height)
|
||||
void Decode5A3Image(u32* dst, const u16* src, int width, int height)
|
||||
{
|
||||
for (int y = 0; y < height; y += 4)
|
||||
{
|
||||
@ -58,7 +58,7 @@ void decode5A3image(u32* dst, const u16* src, int width, int height)
|
||||
}
|
||||
}
|
||||
|
||||
void decodeCI8image(u32* dst, const u8* src, const u16* pal, int width, int height)
|
||||
void DecodeCI8Image(u32* dst, const u8* src, const u16* pal, int width, int height)
|
||||
{
|
||||
for (int y = 0; y < height; y += 4)
|
||||
{
|
||||
|
@ -8,6 +8,6 @@
|
||||
|
||||
namespace Common
|
||||
{
|
||||
void decode5A3image(u32* dst, const u16* src, int width, int height);
|
||||
void decodeCI8image(u32* dst, const u8* src, const u16* pal, int width, int height);
|
||||
void Decode5A3Image(u32* dst, const u16* src, int width, int height);
|
||||
void DecodeCI8Image(u32* dst, const u8* src, const u16* pal, int width, int height);
|
||||
} // namespace Common
|
||||
|
Reference in New Issue
Block a user