2009-02-23 06:17:57 +00:00
|
|
|
// Copyright (C) 2003-2008 Dolphin Project.
|
|
|
|
|
|
|
|
// 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/
|
|
|
|
|
|
|
|
#ifndef _VERTEXSHADERCACHE_H
|
|
|
|
#define _VERTEXSHADERCACHE_H
|
|
|
|
|
|
|
|
#include "D3DBase.h"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
#include "D3DBase.h"
|
|
|
|
#include "VertexShaderGen.h"
|
2009-02-23 06:17:57 +00:00
|
|
|
|
2009-02-28 22:10:38 +00:00
|
|
|
class VertexShaderCache
|
2009-02-23 06:17:57 +00:00
|
|
|
{
|
|
|
|
struct VSCacheEntry
|
|
|
|
{
|
2009-03-01 10:38:04 +00:00
|
|
|
LPDIRECT3DVERTEXSHADER9 shader;
|
2009-02-23 06:17:57 +00:00
|
|
|
int frameCount;
|
2009-03-01 10:53:23 +00:00
|
|
|
VSCacheEntry() : shader(NULL), frameCount(0) {}
|
2009-02-23 06:17:57 +00:00
|
|
|
void Destroy()
|
|
|
|
{
|
2009-03-01 10:38:04 +00:00
|
|
|
if (shader)
|
|
|
|
shader->Release();
|
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;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static void Init();
|
|
|
|
static void Cleanup();
|
|
|
|
static void Shutdown();
|
2009-02-28 22:10:38 +00:00
|
|
|
static void SetShader(u32 components);
|
2009-03-01 10:38:04 +00:00
|
|
|
static LPDIRECT3DVERTEXSHADER9 CompileCgShader(const char *pstrprogram);
|
2009-02-23 06:17:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _VERTEXSHADERCACHE_H
|