diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2014-08-04 19:51:42 -0700 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2014-08-04 20:47:02 -0700 |
| commit | 16f180524cc1526e04cd91f33f74ca56f190bc06 (patch) | |
| tree | f18195c61cc888f78f92156aa111cee0d904d74d /Source/Core/VideoCommon/VertexLoader.cpp | |
| parent | 99dc069b9a19661cf529028f3d6d1aa5ee69cf29 (diff) | |
VertexLoader: do not prepare for vertices if we need to skip them
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoader.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader.cpp b/Source/Core/VideoCommon/VertexLoader.cpp index a4c0a2f6f2..6a094756a4 100644 --- a/Source/Core/VideoCommon/VertexLoader.cpp +++ b/Source/Core/VideoCommon/VertexLoader.cpp @@ -10,7 +10,6 @@ #include "Core/Host.h" -#include "VideoCommon/BPMemory.h" #include "VideoCommon/DataReader.h" #include "VideoCommon/LookUpTables.h" #include "VideoCommon/PixelEngine.h" @@ -840,12 +839,6 @@ void VertexLoader::ConvertVertices ( int count ) void VertexLoader::RunVertices(const VAT& vat, int primitive, int const count) { - if (bpmem.genMode.cullmode == 3 && primitive < 5) - { - // if cull mode is none, ignore triangles and quads - DataSkip(count * m_VertexSize); - return; - } SetupRunVertices(vat, primitive, count); ConvertVertices(count); } |
