mirror of
https://github.com/Gericom/FastVideoDSPlayer.git
synced 2025-06-18 18:45:34 -04:00
16 lines
234 B
C
16 lines
234 B
C
#pragma once
|
|
|
|
union XBGR1555
|
|
{
|
|
uint16_t color;
|
|
|
|
struct
|
|
{
|
|
uint16_t r : 5;
|
|
uint16_t g : 5;
|
|
uint16_t b : 5;
|
|
uint16_t x : 1;
|
|
};
|
|
};
|
|
|
|
void uiutil_convertToObj(u8* src, int width, int height, int stride, u16* dst); |