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