2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2009-02-23 06:17:57 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2011-01-29 20:16:51 +00:00
|
|
|
#pragma once
|
2009-02-23 06:17:57 +00:00
|
|
|
|
|
|
|
#include "D3DBase.h"
|
|
|
|
|
|
|
|
#include <map>
|
2009-09-01 19:48:45 +00:00
|
|
|
#include <string>
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
#include "D3DBase.h"
|
|
|
|
#include "VertexShaderGen.h"
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2011-01-29 20:16:51 +00:00
|
|
|
namespace DX9
|
|
|
|
{
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
class VertexShaderCache
|
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 VSCacheEntry
|
|
|
|
{
|
2009-03-01 10:38:04 +00:00
|
|
|
LPDIRECT3DVERTEXSHADER9 shader;
|
2011-09-29 20:54:52 +00:00
|
|
|
|
2009-09-01 19:48:45 +00:00
|
|
|
std::string code;
|
2011-09-08 22:32:04 +00:00
|
|
|
VERTEXSHADERUIDSAFE safe_uid;
|
2011-09-29 20:54:52 +00:00
|
|
|
|
|
|
|
VSCacheEntry() : shader(NULL) {}
|
2009-02-23 06:17:57 +00:00
|
|
|
void Destroy()
|
|
|
|
{
|
2009-03-01 10:38:04 +00:00
|
|
|
if (shader)
|
|
|
|
shader->Release();
|
2009-09-13 17:46:33 +00:00
|
|
|
shader = NULL;
|
2009-02-23 06:17:57 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
typedef std::map<VERTEXSHADERUID, VSCacheEntry> VSCache;
|
2009-02-23 06:17:57 +00:00
|
|
|
|
|
|
|
static VSCache vshaders;
|
2009-09-01 19:48:45 +00:00
|
|
|
static const VSCacheEntry *last_entry;
|
2011-09-29 20:54:52 +00:00
|
|
|
static VERTEXSHADERUID last_uid;
|
2010-06-19 16:22:24 +00:00
|
|
|
static void Clear();
|
2009-02-23 06:17:57 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
static void Init();
|
|
|
|
static void Shutdown();
|
2009-09-02 21:19:35 +00:00
|
|
|
static bool SetShader(u32 components);
|
2010-06-05 00:01:18 +00:00
|
|
|
static LPDIRECT3DVERTEXSHADER9 GetSimpleVertexShader(int level);
|
|
|
|
static LPDIRECT3DVERTEXSHADER9 GetClearVertexShader();
|
2010-01-17 17:44:09 +00:00
|
|
|
static bool InsertByteCode(const VERTEXSHADERUID &uid, const u8 *bytecode, int bytecodelen, bool activate);
|
2010-11-29 16:16:48 +00:00
|
|
|
|
2009-09-01 19:48:45 +00:00
|
|
|
static std::string GetCurrentShaderCode();
|
2009-02-23 06:17:57 +00:00
|
|
|
};
|
|
|
|
|
2011-01-29 20:16:51 +00:00
|
|
|
} // namespace DX9
|