diff options
| author | degasus <wickmarkus@web.de> | 2014-01-30 15:51:20 +0100 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2014-01-31 07:30:55 +0100 |
| commit | 010a0d481ad0f5dd19182eafc411feec387404db (patch) | |
| tree | d63742aa555f77465279ce8f8928a8ecc3cae4f3 /Source/Core/VideoCommon/VertexLoaderManager.cpp | |
| parent | 72cc6431e5654250b49cb7d2c0efce42a8340c8a (diff) | |
VideoCommon: remove Cache Displaylist
This option was known to break every second game and only boost a bit.
It also seems to be broken because of streaming into pinned memory and buffer storage buffers.
v2: also remove dlc_desc
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderManager.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoaderManager.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderManager.cpp b/Source/Core/VideoCommon/VertexLoaderManager.cpp index 9ad3e013c6..de22d1aad6 100644 --- a/Source/Core/VideoCommon/VertexLoaderManager.cpp +++ b/Source/Core/VideoCommon/VertexLoaderManager.cpp @@ -127,14 +127,6 @@ void RunVertices(int vtx_attr_group, int primitive, int count) g_VertexLoaders[vtx_attr_group]->RunVertices(vtx_attr_group, primitive, count); } -void RunCompiledVertices(int vtx_attr_group, int primitive, int count, u8* Data) -{ - if (!count || !Data) - return; - RefreshLoader(vtx_attr_group); - g_VertexLoaders[vtx_attr_group]->RunCompiledVertices(vtx_attr_group, primitive, count,Data); -} - int GetVertexSize(int vtx_attr_group) { RefreshLoader(vtx_attr_group); |
