summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexLoaderManager.cpp
diff options
context:
space:
mode:
authoranthony <Anthony>2016-10-07 19:55:47 -0700
committerHelios747 <aserna3@gmail.com>2016-10-08 11:49:51 -0500
commitb427ead0cc46ae6e35568a85228f6261204a197f (patch)
treebd73787541b9bf9e9cfcbbac03cd39ed22816365 /Source/Core/VideoCommon/VertexLoaderManager.cpp
parent4ba1100f3191c80e58f89c78d1e8965e126da8f3 (diff)
Remove Frameskip
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderManager.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexLoaderManager.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderManager.cpp b/Source/Core/VideoCommon/VertexLoaderManager.cpp
index 6579802445..7f8c79c77d 100644
--- a/Source/Core/VideoCommon/VertexLoaderManager.cpp
+++ b/Source/Core/VideoCommon/VertexLoaderManager.cpp
@@ -180,8 +180,7 @@ static VertexLoaderBase* RefreshLoader(int vtx_attr_group, bool preprocess = fal
return loader;
}
-int RunVertices(int vtx_attr_group, int primitive, int count, DataReader src, bool skip_drawing,
- bool is_preprocess)
+int RunVertices(int vtx_attr_group, int primitive, int count, DataReader src, bool is_preprocess)
{
if (!count)
return 0;
@@ -192,7 +191,7 @@ int RunVertices(int vtx_attr_group, int primitive, int count, DataReader src, bo
if ((int)src.size() < size)
return -1;
- if (skip_drawing || is_preprocess)
+ if (is_preprocess)
return size;
// If the native vertex format changed, force a flush.