diff options
author | Jonathan G Rennison <j.g.rennison@gmail.com> | 2018-05-23 09:55:04 +0100 |
---|---|---|
committer | PeterN <peter@fuzzle.org> | 2018-05-23 09:55:04 +0100 |
commit | 17257b9620a78dc115fadbcfa9a891e5392f09ab (patch) | |
tree | 78ba69e935bebbdc3b4ad9996cdc0059e576bf8f /projects/openttd_vs141.vcxproj | |
parent | 306b999cf41307377bebe916048bdfb6fdf8e648 (diff) | |
download | openttd-17257b9620a78dc115fadbcfa9a891e5392f09ab.tar.xz |
Add: 32bpp SSE2 blitter palette animator (#6795)
Create a new blitter mode: 32bpp-sse2-anim, which is 32bpp-anim + this.
32bpp-sse2-anim is now used by default where 32bpp-anim would have been.
Also use this with the 32bpp-sse4-anim blitter.
See issue #6469.
Diffstat (limited to 'projects/openttd_vs141.vcxproj')
-rw-r--r-- | projects/openttd_vs141.vcxproj | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/projects/openttd_vs141.vcxproj b/projects/openttd_vs141.vcxproj index 411ea573d..cfedf9826 100644 --- a/projects/openttd_vs141.vcxproj +++ b/projects/openttd_vs141.vcxproj @@ -1170,6 +1170,8 @@ <ClCompile Include="..\src\script\api\script_window.cpp" /> <ClCompile Include="..\src\blitter\32bpp_anim.cpp" /> <ClInclude Include="..\src\blitter\32bpp_anim.hpp" /> + <ClCompile Include="..\src\blitter\32bpp_anim_sse2.cpp" /> + <ClInclude Include="..\src\blitter\32bpp_anim_sse2.hpp" /> <ClCompile Include="..\src\blitter\32bpp_anim_sse4.cpp" /> <ClInclude Include="..\src\blitter\32bpp_anim_sse4.hpp" /> <ClCompile Include="..\src\blitter\32bpp_base.cpp" /> |