From 7bb44199fd9c6c2eb89aa5661b31a4aceee385df Mon Sep 17 00:00:00 2001 From: degasus Date: Fri, 16 May 2014 14:33:00 +0200 Subject: [PATCH] remove unused and unexported function --- Source/Core/VideoCommon/VertexLoaderManager.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Source/Core/VideoCommon/VertexLoaderManager.cpp b/Source/Core/VideoCommon/VertexLoaderManager.cpp index 5757dc6f45..b39577dd26 100644 --- a/Source/Core/VideoCommon/VertexLoaderManager.cpp +++ b/Source/Core/VideoCommon/VertexLoaderManager.cpp @@ -126,14 +126,6 @@ void RunVertices(int vtx_attr_group, int primitive, int count) RefreshLoader(vtx_attr_group)->RunVertices(vtx_attr_group, primitive, count); } -void SkipVertices(int vtx_attr_group, int count) -{ - if (!count) - return; - u32 stride = RefreshLoader(vtx_attr_group)->GetVertexSize(); - DataSkip(count * stride); -} - int GetVertexSize(int vtx_attr_group) { return RefreshLoader(vtx_attr_group)->GetVertexSize();