Basic shader cache.

This commit is contained in:
Ben Vanik
2013-10-11 21:45:20 -07:00
parent 6e4fb87992
commit 1378fad3c0
20 changed files with 981 additions and 40 deletions

View File

@@ -23,6 +23,8 @@ namespace xe {
namespace gpu {
namespace d3d11 {
class D3D11ShaderCache;
class D3D11GraphicsDriver : public GraphicsDriver {
public:
@@ -43,7 +45,9 @@ public:
uint32_t index_count);
private:
ID3D11Device* device_;
ID3D11Device* device_;
D3D11ShaderCache* shader_cache_;
};