2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-09-30 00:28:27 +00:00
|
|
|
|
|
|
|
#ifndef OPENCL_TEXTURE_DECODER
|
|
|
|
#define OPENCL_TEXTURE_DECODER
|
|
|
|
#include "Common.h"
|
|
|
|
#include "../TextureDecoder.h"
|
|
|
|
|
2009-10-14 22:28:23 +00:00
|
|
|
void TexDecoder_OpenCL_Initialize();
|
|
|
|
void TexDecoder_OpenCL_Shutdown();
|
|
|
|
|
2010-06-22 00:52:17 +00:00
|
|
|
PC_TexFormat TexDecoder_Decode_OpenCL(u8 *dst, const u8 *src, int width, int height, int texformat, int tlutaddr, int tlutfmt, bool rgba);
|
2009-09-30 00:28:27 +00:00
|
|
|
|
|
|
|
#endif
|