mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 15:19:09 +00:00
Remove Frameskip
This commit is contained in:
parent
4ba1100f31
commit
b427ead0cc
20 changed files with 83 additions and 204 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue