2013-04-18 03:29:41 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2011-01-29 20:16:51 +00:00
|
|
|
#pragma once
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2010-01-17 17:44:09 +00:00
|
|
|
#include "Common.h"
|
|
|
|
#include "LinearDiskCache.h"
|
2009-02-23 06:17:57 +00:00
|
|
|
#include "D3DBase.h"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
#include "PixelShaderGen.h"
|
|
|
|
#include "VertexShaderGen.h"
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2011-01-29 20:16:51 +00:00
|
|
|
namespace DX9
|
|
|
|
{
|
|
|
|
|
2009-02-23 06:17:57 +00:00
|
|
|
typedef u32 tevhash;
|
|
|
|
|
|
|
|
tevhash GetCurrentTEV();
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
class PixelShaderCache
|
2009-02-23 06:17:57 +00:00
|
|
|
{
|
2009-09-01 19:48:45 +00:00
|
|
|
private:
|
2009-02-23 06:17:57 +00:00
|
|
|
struct PSCacheEntry
|
|
|
|
{
|
2009-03-01 10:38:04 +00:00
|
|
|
LPDIRECT3DPIXELSHADER9 shader;
|
2010-06-20 22:23:34 +00:00
|
|
|
bool owns_shader;
|
2010-12-05 14:15:36 +00:00
|
|
|
|
2011-09-08 22:32:04 +00:00
|
|
|
std::string code;
|
|
|
|
|
2011-09-29 20:54:52 +00:00
|
|
|
PSCacheEntry() : shader(NULL), owns_shader(true) {}
|
2009-02-23 06:17:57 +00:00
|
|
|
void Destroy()
|
|
|
|
{
|
2010-06-20 22:23:34 +00:00
|
|
|
if (shader && owns_shader)
|
2009-03-01 10:38:04 +00:00
|
|
|
shader->Release();
|
2009-09-13 17:46:33 +00:00
|
|
|
shader = NULL;
|
2009-02-23 06:17:57 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-03-26 22:35:14 +00:00
|
|
|
typedef std::map<PixelShaderUid, PSCacheEntry> PSCache;
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
static PSCache PixelShaders;
|
2009-09-01 19:48:45 +00:00
|
|
|
static const PSCacheEntry *last_entry;
|
2013-03-26 22:35:14 +00:00
|
|
|
static PixelShaderUid last_uid;
|
2013-04-29 19:00:39 +00:00
|
|
|
static UidChecker<PixelShaderUid,PixelShaderCode> pixel_uid_checker;
|
|
|
|
|
2010-06-19 16:22:24 +00:00
|
|
|
static void Clear();
|
2010-01-17 17:44:09 +00:00
|
|
|
|
2009-02-23 06:17:57 +00:00
|
|
|
public:
|
|
|
|
static void Init();
|
|
|
|
static void Shutdown();
|
2012-08-10 16:57:37 +00:00
|
|
|
static bool SetShader(DSTALPHA_MODE dstAlphaMode, u32 componets);
|
2013-03-26 22:35:14 +00:00
|
|
|
static bool InsertByteCode(const PixelShaderUid &uid, const u8 *bytecode, int bytecodelen, bool activate);
|
2010-02-08 23:23:04 +00:00
|
|
|
static LPDIRECT3DPIXELSHADER9 GetColorMatrixProgram(int SSAAMode);
|
|
|
|
static LPDIRECT3DPIXELSHADER9 GetColorCopyProgram(int SSAAMode);
|
2011-01-06 02:24:03 +00:00
|
|
|
static LPDIRECT3DPIXELSHADER9 GetDepthMatrixProgram(int SSAAMode, bool depthConversion);
|
2010-02-08 23:23:04 +00:00
|
|
|
static LPDIRECT3DPIXELSHADER9 GetClearProgram();
|
2010-12-27 21:56:20 +00:00
|
|
|
static LPDIRECT3DPIXELSHADER9 ReinterpRGBA6ToRGB8();
|
|
|
|
static LPDIRECT3DPIXELSHADER9 ReinterpRGB8ToRGBA6();
|
2009-02-23 06:17:57 +00:00
|
|
|
};
|
|
|
|
|
2011-01-29 20:16:51 +00:00
|
|
|
} // namespace DX9
|