13#include "../video/video_driver.hpp"
14#include "32bpp_anim_sse2.hpp"
17#include "../safeguards.h"
20static FBlitter_32bppSSE2_Anim iFBlitter_32bppSSE2_Anim;
23void Blitter_32bppSSE2_Anim::PaletteAnimate(const
Palette &palette)
27 this->palette = palette;
31 assert(this->palette.first_dirty ==
PALETTE_ANIM_START || this->palette.first_dirty == 0);
33 const uint16_t *anim = this->anim_buf;
36 bool screen_dirty =
false;
39 const int width = this->anim_buf_width;
40 const int screen_pitch = _screen.pitch;
41 const int anim_pitch = this->anim_buf_pitch;
43 __m128i brightness_cmp = _mm_set1_epi16(Blitter_32bppBase::DEFAULT_BRIGHTNESS);
44 __m128i colour_mask = _mm_set1_epi16(0xFF);
45 for (
int y = this->anim_buf_height; y != 0 ; y--) {
46 Colour *next_dst_ln = dst + screen_pitch;
47 const uint16_t *next_anim_ln = anim + anim_pitch;
50 __m128i data = _mm_load_si128((
const __m128i *) anim);
53 __m128i colour_data = _mm_and_si128(data, colour_mask);
56 int colour_cmp_result = _mm_movemask_epi8(_mm_cmpgt_epi16(colour_data, anim_cmp));
57 if (colour_cmp_result) {
59 if (x < 8 || colour_cmp_result != 0xFFFF ||
60 _mm_movemask_epi8(_mm_cmpeq_epi16(_mm_srli_epi16(data, 8), brightness_cmp)) != 0xFFFF) {
62 for (
int z = std::min<int>(x, 8); z != 0 ; z--) {
63 int value = _mm_extract_epi16(data, 0);
64 uint8_t colour =
GB(value, 0, 8);
67 *dst = AdjustBrightneSSE(LookupColourInPalette(colour),
GB(value, 8, 8));
70 data = _mm_srli_si128(data, 2);
75 for (
int z = 0; z < 8; z++) {
76 *dst = LookupColourInPalette(_mm_extract_epi16(colour_data, 0));
77 colour_data = _mm_srli_si128(colour_data, 2);
Functions related to SSE 32 bpp blitter.
debug_inline static constexpr uint GB(const T x, const uint8_t s, const uint8_t n)
Fetch n bits from x, started at bit s.
virtual void MakeDirty(int left, int top, int width, int height)=0
Mark a particular area dirty.
static VideoDriver * GetInstance()
Get the currently active instance of the video driver.
bool _screen_disable_anim
Disable palette animation (important for 32bpp-anim blitter during giant screenshot)
static constexpr uint8_t PALETTE_ANIM_START
Index in the _palettes array from which all animations are taking places (table/palettes....
Information about the currently used palette.
Structure to access the alpha, red, green, and blue channels from a 32 bit number.