Update: Translations from eints
[openttd-github.git] / src / blitter / 32bpp_ssse3.hpp
blob4ee475d45f4277a4dbe534e36181fdc360565d28
1 /*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
8 /** @file 32bpp_ssse3.hpp SSSE3 32 bpp blitter. */
10 #ifndef BLITTER_32BPP_SSSE3_HPP
11 #define BLITTER_32BPP_SSSE3_HPP
13 #ifdef WITH_SSE
15 #ifndef SSE_VERSION
16 #define SSE_VERSION 3
17 #endif
19 #ifndef SSE_TARGET
20 #define SSE_TARGET "ssse3"
21 #endif
23 #ifndef FULL_ANIMATION
24 #define FULL_ANIMATION 0
25 #endif
27 #include "32bpp_sse2.hpp"
29 /** The SSSE3 32 bpp blitter (without palette animation). */
30 class Blitter_32bppSSSE3 : public Blitter_32bppSSE2 {
31 public:
32 void Draw(Blitter::BlitterParams *bp, BlitterMode mode, ZoomLevel zoom) override;
33 template <BlitterMode mode, Blitter_32bppSSE_Base::ReadMode read_mode, Blitter_32bppSSE_Base::BlockType bt_last, bool translucent>
34 void Draw(const Blitter::BlitterParams *bp, ZoomLevel zoom);
35 std::string_view GetName() override { return "32bpp-ssse3"; }
38 /** Factory for the SSSE3 32 bpp blitter (without palette animation). */
39 class FBlitter_32bppSSSE3: public BlitterFactory {
40 public:
41 FBlitter_32bppSSSE3() : BlitterFactory("32bpp-ssse3", "32bpp SSSE3 Blitter (no palette animation)", HasCPUIDFlag(1, 2, 9)) {}
42 Blitter *CreateInstance() override { return new Blitter_32bppSSSE3(); }
45 #endif /* WITH_SSE */
46 #endif /* BLITTER_32BPP_SSSE3_HPP */