mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-12 20:42:07 +00:00
VideoCommon: VertexManager -> VertexManagerBase
It may be a bit weird to see calls to static functions in VertexManagerBase now, but at least it's easier to see what's going on.
This commit is contained in:
parent
89f6451513
commit
c52c73f762
10 changed files with 43 additions and 43 deletions
|
@ -9,7 +9,7 @@
|
|||
namespace DX11
|
||||
{
|
||||
|
||||
class VertexManager : public ::VertexManager
|
||||
class VertexManager : public VertexManagerBase
|
||||
{
|
||||
public:
|
||||
VertexManager();
|
||||
|
|
|
@ -26,7 +26,7 @@ namespace OGL
|
|||
|
||||
// Handles the OpenGL details of drawing lots of vertices quickly.
|
||||
// Other functionality is moving out.
|
||||
class VertexManager : public ::VertexManager
|
||||
class VertexManager : public VertexManagerBase
|
||||
{
|
||||
public:
|
||||
VertexManager();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue