Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #375 from degasus/remove_SkipVertices
VertexLoaderManager: Remove unused function.
  • Loading branch information
neobrain committed May 16, 2014
2 parents b881726 + 7bb4419 commit fee6efc
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions Source/Core/VideoCommon/VertexLoaderManager.cpp
Expand Up @@ -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();
Expand Down

0 comments on commit fee6efc

Please sign in to comment.