diff options
author | rubidium <rubidium@openttd.org> | 2014-01-02 16:48:16 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2014-01-02 16:48:16 +0000 |
commit | 3c94485ba0dcf8bb26f94f3a8e74369cd5619c01 (patch) | |
tree | 1c45ff84d185eac6392ea561cf7eb7ceb53b709d /projects/openttd_vs100.vcxproj | |
parent | c98a94da447a34f33894f3d5a7ec7cbe869a726a (diff) | |
download | openttd-3c94485ba0dcf8bb26f94f3a8e74369cd5619c01.tar.xz |
(svn r26205) -Feature: SSE 4.1 sprite sorter, improving the sorting performance significantly (MJP)
For example with GCC 4.8, x86_64 Linux, Intel i5-3337U this patch improves the performance of Pile, Treham and Hamac test save games by about 10% in over-all run time at fast forward at 1920x1080 when zoomed out and when trees are not disabled.
Diffstat (limited to 'projects/openttd_vs100.vcxproj')
-rw-r--r-- | projects/openttd_vs100.vcxproj | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/projects/openttd_vs100.vcxproj b/projects/openttd_vs100.vcxproj index e5c81d539..e55e7dd34 100644 --- a/projects/openttd_vs100.vcxproj +++ b/projects/openttd_vs100.vcxproj @@ -385,6 +385,7 @@ <ClCompile Include="..\src\vehicle.cpp" /> <ClCompile Include="..\src\vehiclelist.cpp" /> <ClCompile Include="..\src\viewport.cpp" /> + <ClCompile Include="..\src\viewport_sprite_sorter_sse4.cpp" /> <ClCompile Include="..\src\waypoint.cpp" /> <ClCompile Include="..\src\widget.cpp" /> <ClCompile Include="..\src\window.cpp" /> @@ -641,6 +642,7 @@ <ClInclude Include="..\src\vehicle_type.h" /> <ClInclude Include="..\src\vehiclelist.h" /> <ClInclude Include="..\src\viewport_func.h" /> + <ClInclude Include="..\src\viewport_sprite_sorter.h" /> <ClInclude Include="..\src\viewport_type.h" /> <ClInclude Include="..\src\water.h" /> <ClInclude Include="..\src\waypoint_base.h" /> |