ColorUtil: Amend function name casing

Makes the function names conform to our coding style.
This commit is contained in:
Lioncash
2018-05-27 20:58:08 -04:00
parent ac474ff1da
commit a745666a60
5 changed files with 14 additions and 14 deletions

View File

@ -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)
{

View File

@ -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