dolphin/Source/Core/VideoBackends/D3D/GeometryShaderCache.h

52 lines
1.2 KiB
C
Raw Normal View History

2014-12-03 21:17:56 +00:00
// Copyright 2013 Dolphin Emulator Project
2015-05-17 23:08:10 +00:00
// Licensed under GPLv2+
2014-12-03 21:17:56 +00:00
// Refer to the license.txt file included.
#pragma once
#include <d3d11.h>
#include <map>
#include "VideoCommon/GeometryShaderGen.h"
namespace DX11
{
class GeometryShaderCache
{
public:
static void Init();
static void Clear();
static void Shutdown();
static bool SetShader(u32 primitive_type); // TODO: Should be renamed to LoadShader
2014-12-03 21:17:56 +00:00
static bool InsertByteCode(const GeometryShaderUid &uid, const void* bytecode, unsigned int bytecodelen);
static ID3D11GeometryShader* GeometryShaderCache::GetClearGeometryShader();
static ID3D11GeometryShader* GeometryShaderCache::GetCopyGeometryShader();
2014-12-03 21:17:56 +00:00
static ID3D11GeometryShader* GetActiveShader() { return last_entry->shader; }
static ID3D11Buffer* &GetConstantBuffer();
2014-12-03 21:17:56 +00:00
private:
struct GSCacheEntry
{
ID3D11GeometryShader* shader;
std::string code;
GSCacheEntry() : shader(nullptr) {}
void Destroy() { SAFE_RELEASE(shader); }
};
typedef std::map<GeometryShaderUid, GSCacheEntry> GSCache;
static GSCache GeometryShaders;
static const GSCacheEntry* last_entry;
static GeometryShaderUid last_uid;
static const GSCacheEntry pass_entry;
2014-12-03 21:17:56 +00:00
static UidChecker<GeometryShaderUid, ShaderCode> geometry_uid_checker;
};
2014-12-12 16:25:16 +00:00
} // namespace DX11