Work on D3D11 for various state settings. This code sucks. Needs a rewrite.

This commit is contained in:
Ben Vanik
2014-01-18 01:50:31 -08:00
parent a7db0f0410
commit c257ad0122
9 changed files with 435 additions and 65 deletions

View File

@@ -83,3 +83,7 @@ void NopGraphicsDriver::DrawIndexAuto(
// shader constants / bools / integers
// fetch constants
}
int NopGraphicsDriver::Resolve() {
return 0;
}

View File

@@ -47,6 +47,8 @@ public:
xenos::XE_GPU_PRIMITIVE_TYPE prim_type,
uint32_t index_count);
virtual int Resolve();
protected:
ShaderCache* shader_cache_;
};