mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
VertexLoader: Remove the LOADERDECL define.
These functions aren't called from jitted code anymore so it isn't necessary.
This commit is contained in:
parent
c19903e0fe
commit
619e333dcc
7 changed files with 51 additions and 56 deletions
|
@ -18,14 +18,9 @@
|
|||
#include "VideoCommon/VertexLoaderBase.h"
|
||||
#include "VideoCommon/VertexLoaderUtils.h"
|
||||
|
||||
#ifdef WIN32
|
||||
#define LOADERDECL __cdecl
|
||||
#else
|
||||
#define LOADERDECL
|
||||
#endif
|
||||
|
||||
class VertexLoader;
|
||||
typedef void (LOADERDECL *TPipelineFunction)(VertexLoader* loader);
|
||||
typedef void (*TPipelineFunction)(VertexLoader* loader);
|
||||
|
||||
class VertexLoader : public VertexLoaderBase
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue