blob: 7c4f870a475449147868124d93588737ebcb949f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2008 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "Common/CommonTypes.h"
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);
} // namespace Common
|