diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2018-10-22 16:59:26 +0300 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2018-10-22 17:31:07 +0100 |
commit | 35f84efd4a9b448fc00c6328d2d5460a3beb8f75 (patch) | |
tree | 0f67f50e2de6b4a4d47f515c24c9fe7f3e4cd0b3 | |
parent | 74e1c0135133a515e016e63c46c2552bfa3126a8 (diff) |
sna/video/sprite: Fix colorkey setup for depth != 24
Set up the colorkey correctly for depth != 24. For 8bpc we
need to replicate the same key value into each channel, for
depth 15/16 we need to mask off the unused low bits in each
channel, and for depth 30 we just use the 8 msbs of each channel
as the colorkey register can't hold the full 10 bits.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r-- | src/sna/sna_video_sprite.c | 52 |
1 files changed, 49 insertions, 3 deletions
diff --git a/src/sna/sna_video_sprite.c b/src/sna/sna_video_sprite.c index 8b7ae8ae..bb7b200b 100644 --- a/src/sna/sna_video_sprite.c +++ b/src/sna/sna_video_sprite.c @@ -228,6 +228,52 @@ update_dst_box_to_crtc_coords(struct sna *sna, xf86CrtcPtr crtc, BoxPtr dstBox) } } +static uint32_t ckey_chan(uint32_t value, int weight) +{ + return value << 8 >> weight; +} + +static uint32_t ckey_value_chan(uint32_t value, uint32_t mask, + int offset, int weight) +{ + return ckey_chan((value & mask) >> offset, weight); +} + +static uint32_t ckey_value(struct sna *sna, + struct sna_video *video) +{ + ScrnInfoPtr scrn = sna->scrn; + uint32_t r, g ,b; + + if (scrn->depth == 8) { + r = g = b = video->color_key & 0xff; + } else { + r = ckey_value_chan(video->color_key, scrn->mask.red, + scrn->offset.red, scrn->weight.red); + g = ckey_value_chan(video->color_key, scrn->mask.green, + scrn->offset.green, scrn->weight.green); + b = ckey_value_chan(video->color_key, scrn->mask.blue, + scrn->offset.blue, scrn->weight.blue); + } + + return r << 16 | g << 8 | b; +} + +static uint32_t ckey_mask_chan(int weight) +{ + return ckey_chan((1 << weight) - 1, weight); +} + +static uint32_t ckey_mask(struct sna *sna) +{ + ScrnInfoPtr scrn = sna->scrn; + uint32_t r = ckey_mask_chan(scrn->weight.red); + uint32_t g = ckey_mask_chan(scrn->weight.green); + uint32_t b = ckey_mask_chan(scrn->weight.blue); + + return 0x7 << 24 | r << 16 | g << 8 | b; +} + static bool sna_video_sprite_show(struct sna *sna, struct sna_video *video, @@ -260,9 +306,9 @@ sna_video_sprite_show(struct sna *sna, __FUNCTION__, video->color_key)); set.plane_id = s.plane_id; - set.min_value = video->color_key; - set.max_value = video->color_key; /* not used for destkey */ - set.channel_mask = 0x7 << 24 | 0xff << 16 | 0xff << 8 | 0xff << 0; + set.min_value = ckey_value(sna, video); + set.max_value = 0; /* not used for destkey */ + set.channel_mask = ckey_mask(sna); set.flags = 0; if (!video->AlwaysOnTop) set.flags |= 1 << 1; /* COLORKEY_DESTINATION */ |