OpenTTD Source  20240919-master-gdf0233f4c2
32bpp_sse4.hpp
Go to the documentation of this file.
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  */
7 
10 #ifndef BLITTER_32BPP_SSE4_HPP
11 #define BLITTER_32BPP_SSE4_HPP
12 
13 #ifdef WITH_SSE
14 
15 #ifndef SSE_VERSION
16 #define SSE_VERSION 4
17 #endif
18 
19 #ifndef SSE_TARGET
20 #define SSE_TARGET "sse4.1"
21 #endif
22 
23 #ifndef FULL_ANIMATION
24 #define FULL_ANIMATION 0
25 #endif
26 
27 #include "32bpp_ssse3.hpp"
28 
30 class Blitter_32bppSSE4 : public Blitter_32bppSSSE3 {
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-sse4"; }
36 };
37 
39 class FBlitter_32bppSSE4: public BlitterFactory {
40 public:
41  FBlitter_32bppSSE4() : BlitterFactory("32bpp-sse4", "32bpp SSE4 Blitter (no palette animation)", HasCPUIDFlag(1, 2, 19)) {}
42  Blitter *CreateInstance() override { return new Blitter_32bppSSE4(); }
43 };
44 
45 #endif /* WITH_SSE */
46 #endif /* BLITTER_32BPP_SSE4_HPP */
BlitterFactory::CreateInstance
virtual Blitter * CreateInstance()=0
Create an instance of this Blitter-class.
BlitterMode
BlitterMode
The modes of blitting we can do.
Definition: base.hpp:17
Blitter
How all blitters should look like.
Definition: base.hpp:29
BlitterFactory
The base factory, keeping track of all blitters.
Definition: factory.hpp:21
32bpp_ssse3.hpp
Blitter::BlitterParams
Parameters related to blitting.
Definition: base.hpp:32
HasCPUIDFlag
bool HasCPUIDFlag(uint type, uint index, uint bit)
Check whether the current CPU has the given flag.
Definition: cpu.cpp:84
ZoomLevel
ZoomLevel
All zoom levels we know.
Definition: zoom_type.h:16