diff options
| author | Fiora <fioraaeterna@gmail.com> | 2014-11-28 20:26:00 -0800 |
|---|---|---|
| committer | Fiora <fioraaeterna@gmail.com> | 2014-11-28 20:26:00 -0800 |
| commit | 7acd5eba1777000038f2ccde5a236a663e3d7543 (patch) | |
| tree | d31360019f98c5071acac18f456f4f414aa0b2d7 /Source/Core/VideoCommon/VertexLoader.cpp | |
| parent | ce059769f6bf13118366f77fea926727efcf4510 (diff) | |
Vertex loader: use ABI_CallFunction
Should result in faster/shorter code sequences on platforms where generated
code is close enough to the code segment (e.g. Windows).
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoader.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader.cpp b/Source/Core/VideoCommon/VertexLoader.cpp index 80a891ff26..3fd644ec97 100644 --- a/Source/Core/VideoCommon/VertexLoader.cpp +++ b/Source/Core/VideoCommon/VertexLoader.cpp @@ -410,8 +410,7 @@ void VertexLoader::CompileVertexTranslator() void VertexLoader::WriteCall(TPipelineFunction func) { #ifdef USE_VERTEX_LOADER_JIT - MOV(64, R(RAX), Imm64((u64)func)); - CALLptr(R(RAX)); + ABI_CallFunction((const void*)func); #else m_PipelineStages[m_numPipelineStages++] = func; #endif |
