aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile11
-rwxr-xr-xconfigure30
-rw-r--r--frontend/320240/ui_gp2x.h2
m---------frontend/libpicofe0
-rw-r--r--frontend/main.c2
-rw-r--r--frontend/menu.c27
-rw-r--r--frontend/menu.h3
-rw-r--r--frontend/pandora/ui_feat.h2
-rw-r--r--frontend/plat_pandora.c2
-rw-r--r--frontend/plat_sdl.c254
-rw-r--r--plugins/gpu-gles/Makefile3
-rw-r--r--plugins/gpulib/cspace.c30
-rw-r--r--plugins/gpulib/cspace.h1
13 files changed, 168 insertions, 199 deletions
diff --git a/Makefile b/Makefile
index 2ca2fdd..a3cd3b2 100644
--- a/Makefile
+++ b/Makefile
@@ -132,9 +132,18 @@ OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
# frontend/gui
ifeq "$(PLATFORM)" "generic"
-OBJS += frontend/libpicofe/in_sdl.o frontend/plat_sdl.o
+OBJS += frontend/libpicofe/in_sdl.o
+OBJS += frontend/libpicofe/plat_sdl.o
OBJS += frontend/libpicofe/plat_dummy.o
OBJS += frontend/libpicofe/linux/in_evdev.o
+OBJS += frontend/plat_sdl.o
+ifeq "$(HAVE_GLES)" "1"
+OBJS += frontend/libpicofe/gl.o
+LDLIBS += $(LDLIBS_GLES)
+frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
+frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
+frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
+endif
USE_PLUGIN_LIB = 1
USE_FRONTEND = 1
endif
diff --git a/configure b/configure
index e8e5b2a..8ef7611 100755
--- a/configure
+++ b/configure
@@ -46,10 +46,13 @@ have_armv6=""
have_armv7=""
have_arm_neon=""
have_tslib=""
+have_gles=""
enable_dynarec="yes"
need_sdl="no"
need_libpicofe="yes"
need_warm="no"
+CFLAGS_GLES=""
+LDLIBS_GLES=""
# these are for known platforms
optimize_cortexa8="no"
optimize_arm926ej="no"
@@ -362,19 +365,31 @@ EOF
fi
fi
+# check for VideoCore stuff for Raspberry Pi
+if [ -d /opt/vc/include -a -d /opt/vc/lib ]; then
+ CFLAGS_GLES="$CFLAGS_GLES -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads"
+ LDLIBS_GLES="$LDLIBS_GLES -L/opt/vc/lib"
+fi
+
# check for GLES headers
cat > $TMPC <<EOF
#include <GLES/gl.h>
-#include <GLES/glext.h>
#include <EGL/egl.h>
-void *test(void) {
- return eglGetDisplay( (EGLNativeDisplayType)0 );
+int main(void) {
+ return (int)eglGetDisplay( (EGLNativeDisplayType)0 );
}
EOF
-if compile_object; then
- plugins="$plugins plugins/gpu-gles/gpu_gles.so"
+if compile_binary $CFLAGS_GLES -lEGL -lGLES_CM $LDLIBS_GLES; then
+ have_gles="yes"
+ LDLIBS_GLES="-lEGL -lGLES_CM $LDLIBS_GLES"
+elif compile_binary $CFLAGS_GLES -lEGL -lGLESv1_CM $LDLIBS_GLES; then
+ have_gles="yes"
+ LDLIBS_GLES="-lEGL -lGLESv1_CM $LDLIBS_GLES"
fi
+if [ "$have_gles" = "yes" ]; then
+ plugins="$plugins plugins/gpu-gles/gpu_gles.so"
+fi
if [ "$have_arm_neon" = "yes" -a "$builtin_gpu" != "neon" ]; then
plugins="$plugins plugins/gpu_neon/gpu_neon.so"
fi
@@ -441,6 +456,11 @@ fi
if [ "$have_tslib" = "yes" ]; then
echo "HAVE_TSLIB = 1" >> $config_mak
fi
+if [ "$have_gles" = "yes" ]; then
+ echo "HAVE_GLES = 1" >> $config_mak
+ echo "CFLAGS_GLES = $CFLAGS_GLES" >> $config_mak
+ echo "LDLIBS_GLES = $LDLIBS_GLES" >> $config_mak
+fi
if [ "$enable_dynarec" = "yes" ]; then
echo "USE_DYNAREC = 1" >> $config_mak
fi
diff --git a/frontend/320240/ui_gp2x.h b/frontend/320240/ui_gp2x.h
index 0fef431..a9c4413 100644
--- a/frontend/320240/ui_gp2x.h
+++ b/frontend/320240/ui_gp2x.h
@@ -3,7 +3,7 @@
#define MENU_BIOS_PATH "pcsx_rearmed/bios/"
#define MENU_SHOW_VARSCALER 0
-#define MENU_SHOW_VIDOVERLAY 0
+#define MENU_SHOW_VOUTMODE 0
#define MENU_SHOW_SCALER2 1
#define MENU_SHOW_NUBS_BTNS 0
#define MENU_SHOW_VIBRATION 1
diff --git a/frontend/libpicofe b/frontend/libpicofe
-Subproject 14fa485ef29d946407fe79f8d7c65afa6ae1fb0
+Subproject e81b987fc1e567f92298087e32e5d9f01fce0aa
diff --git a/frontend/main.c b/frontend/main.c
index 762d753..d46e536 100644
--- a/frontend/main.c
+++ b/frontend/main.c
@@ -262,7 +262,7 @@ do_state_slot:
g_opts |= OPT_SHOWFPS;
break;
case SACTION_TOGGLE_FULLSCREEN:
- g_fullscreen = !g_fullscreen;
+ plat_target.vout_fullscreen = !plat_target.vout_fullscreen;
if (GPU_open != NULL && GPU_close != NULL) {
GPU_close();
GPU_open(&gpuDisp, "PCSX", NULL);
diff --git a/frontend/menu.c b/frontend/menu.c
index 7af718e..9cfa171 100644
--- a/frontend/menu.c
+++ b/frontend/menu.c
@@ -79,7 +79,7 @@ typedef enum
MA_OPT_HWFILTER,
MA_OPT_SWFILTER,
MA_OPT_GAMMA,
- MA_OPT_VIDOVERLAY,
+ MA_OPT_VOUT_MODE,
} menu_id;
static int last_vout_w, last_vout_h, last_vout_bpp;
@@ -91,8 +91,7 @@ static int psx_clock;
static int memcard1_sel, memcard2_sel;
int g_opts, g_scaler, g_gamma = 100;
int soft_scaling, analog_deadzone; // for Caanoo
-int g_use_overlay, g_fullscreen;
-int filter, soft_filter;
+int soft_filter;
#ifdef __ARM_ARCH_7A__
#define DEFAULT_PSX_CLOCK 57
@@ -117,7 +116,7 @@ static int bios_sel, gpu_plugsel, spu_plugsel;
#ifndef UI_FEATURES_H
#define MENU_BIOS_PATH "bios/"
#define MENU_SHOW_VARSCALER 0
-#define MENU_SHOW_VIDOVERLAY 1
+#define MENU_SHOW_VOUTMODE 1
#define MENU_SHOW_SCALER2 0
#define MENU_SHOW_NUBS_BTNS 0
#define MENU_SHOW_VIBRATION 0
@@ -231,8 +230,7 @@ static void menu_set_defconfig(void)
analog_deadzone = 50;
soft_scaling = 1;
soft_filter = 0;
- g_use_overlay = 1;
- g_fullscreen = 0;
+ plat_target.vout_fullscreen = 0;
psx_clock = DEFAULT_PSX_CLOCK;
region = 0;
@@ -296,10 +294,10 @@ static const struct {
CE_INTVAL(g_layer_y),
CE_INTVAL(g_layer_w),
CE_INTVAL(g_layer_h),
- CE_INTVAL(filter),
CE_INTVAL(soft_filter),
- CE_INTVAL(g_use_overlay),
- CE_INTVAL(g_fullscreen),
+ CE_INTVAL(plat_target.vout_method),
+ CE_INTVAL(plat_target.hwfilter),
+ CE_INTVAL(plat_target.vout_fullscreen),
CE_INTVAL(state_slot),
CE_INTVAL(cpu_clock),
CE_INTVAL(g_opts),
@@ -1144,9 +1142,9 @@ static int menu_loop_cscaler(int id, int keys)
static menu_entry e_menu_gfx_options[] =
{
mee_enum ("Scaler", MA_OPT_VARSCALER, g_scaler, men_scaler),
- mee_onoff_h ("Use video overlay", MA_OPT_VIDOVERLAY, g_use_overlay, 1, h_overlay),
+ mee_enum ("Video output mode", MA_OPT_VOUT_MODE, plat_target.vout_method, men_dummy),
mee_onoff ("Software Scaling", MA_OPT_SCALER2, soft_scaling, 1),
- mee_enum ("Hardware Filter", MA_OPT_HWFILTER, filter, men_dummy),
+ mee_enum ("Hardware Filter", MA_OPT_HWFILTER, plat_target.hwfilter, men_dummy),
mee_enum_h ("Software Filter", MA_OPT_SWFILTER, soft_filter, men_soft_filter, h_soft_filter),
mee_range_h ("Gamma adjustment", MA_OPT_GAMMA, g_gamma, 1, 200, h_gamma),
// mee_onoff ("Vsync", 0, vsync, 1),
@@ -2312,6 +2310,11 @@ void menu_init(void)
&& plat_target.cpu_clock_get != NULL && cpu_clock_st > 0;
me_enable(e_menu_gfx_options, MA_OPT_CPU_CLOCKS, i);
+ i = me_id2offset(e_menu_gfx_options, MA_OPT_VOUT_MODE);
+ e_menu_gfx_options[i].data = plat_target.vout_methods;
+ me_enable(e_menu_gfx_options, MA_OPT_VOUT_MODE,
+ plat_target.vout_methods != NULL);
+
i = me_id2offset(e_menu_gfx_options, MA_OPT_HWFILTER);
e_menu_gfx_options[i].data = plat_target.hwfilters;
me_enable(e_menu_gfx_options, MA_OPT_HWFILTER,
@@ -2324,7 +2327,7 @@ void menu_init(void)
me_enable(e_menu_gfx_options, MA_OPT_SWFILTER, 0);
#endif
me_enable(e_menu_gfx_options, MA_OPT_VARSCALER, MENU_SHOW_VARSCALER);
- me_enable(e_menu_gfx_options, MA_OPT_VIDOVERLAY, MENU_SHOW_VIDOVERLAY);
+ me_enable(e_menu_gfx_options, MA_OPT_VOUT_MODE, MENU_SHOW_VOUTMODE);
me_enable(e_menu_gfx_options, MA_OPT_VARSCALER_C, MENU_SHOW_VARSCALER);
me_enable(e_menu_gfx_options, MA_OPT_SCALER2, MENU_SHOW_SCALER2);
me_enable(e_menu_keyconfig, MA_CTRL_NUBS_BTNS, MENU_SHOW_NUBS_BTNS);
diff --git a/frontend/menu.h b/frontend/menu.h
index c6c1ab1..0d68469 100644
--- a/frontend/menu.h
+++ b/frontend/menu.h
@@ -29,8 +29,7 @@ enum g_soft_filter_opts {
extern int g_opts, g_scaler, g_gamma;
extern int soft_scaling, analog_deadzone;
-extern int g_use_overlay, g_fullscreen;
-extern int filter, soft_filter;
+extern int soft_filter;
extern int g_menuscreen_w;
extern int g_menuscreen_h;
diff --git a/frontend/pandora/ui_feat.h b/frontend/pandora/ui_feat.h
index 7564e17..3bb808a 100644
--- a/frontend/pandora/ui_feat.h
+++ b/frontend/pandora/ui_feat.h
@@ -4,7 +4,7 @@
#define MENU_BIOS_PATH "<SD card>/pandora/appdata/pcsx_rearmed/bios/"
#define BOOT_MSG "Booting up... (press SPACE for menu)"
#define MENU_SHOW_VARSCALER 1
-#define MENU_SHOW_VIDOVERLAY 0
+#define MENU_SHOW_VOUTMODE 0
#define MENU_SHOW_SCALER2 0
#define MENU_SHOW_NUBS_BTNS 1
#define MENU_SHOW_VIBRATION 0
diff --git a/frontend/plat_pandora.c b/frontend/plat_pandora.c
index cdd94c6..d44513c 100644
--- a/frontend/plat_pandora.c
+++ b/frontend/plat_pandora.c
@@ -70,7 +70,7 @@ void plat_finish(void)
void plat_gvideo_open(int is_pal)
{
plat_target_lcdrate_set(is_pal);
- plat_target_hwfilter_set(filter);
+ plat_target_hwfilter_set(plat_target.hwfilter);
plat_target_gamma_set(g_gamma, 0);
plat_omap_gvideo_open();
diff --git a/frontend/plat_sdl.c b/frontend/plat_sdl.c
index 9862e2b..ec2d9c2 100644
--- a/frontend/plat_sdl.c
+++ b/frontend/plat_sdl.c
@@ -15,10 +15,11 @@
#include "libpicofe/in_sdl.h"
#include "libpicofe/menu.h"
#include "libpicofe/fonts.h"
+#include "libpicofe/plat_sdl.h"
+#include "libpicofe/gl.h"
#include "../plugins/gpulib/cspace.h"
#include "plugin_lib.h"
#include "main.h"
-#include "menu.h"
#include "plat.h"
#include "revision.h"
@@ -51,169 +52,58 @@ static const struct in_default_bind in_sdl_defbinds[] = {
{ 0, 0, 0 }
};
-// XXX: maybe determine this instead..
-#define WM_DECORATION_H 32
-
-static SDL_Surface *screen;
-static SDL_Overlay *overlay;
-static int window_w, window_h;
-static int fs_w, fs_h;
static int psx_w, psx_h;
-static void *menubg_img;
-static int in_menu, old_fullscreen;
-
-static void overlay_clear(void);
+static void *shadow_fb, *menubg_img;
+static int in_menu;
-static int change_video_mode(int w, int h)
+static int change_video_mode(void)
{
- psx_w = w;
- psx_h = h;
+ int w, h;
- if (overlay != NULL) {
- SDL_FreeYUVOverlay(overlay);
- overlay = NULL;
+ if (in_menu) {
+ w = g_menuscreen_w;
+ h = g_menuscreen_h;
}
-
- if (g_use_overlay && !in_menu) {
- Uint32 flags = SDL_RESIZABLE;
- int win_w = window_w;
- int win_h = window_h;
-
- if (g_fullscreen) {
- flags |= SDL_FULLSCREEN;
- win_w = fs_w;
- win_h = fs_h;
- }
-
- screen = SDL_SetVideoMode(win_w, win_h, 0, flags);
- if (screen == NULL) {
- fprintf(stderr, "SDL_SetVideoMode failed: %s\n", SDL_GetError());
- return -1;
- }
-
- overlay = SDL_CreateYUVOverlay(w, h, SDL_UYVY_OVERLAY, screen);
- if (overlay != NULL) {
- /*printf("overlay: fmt %x, planes: %d, pitch: %d, hw: %d\n",
- overlay->format, overlay->planes, *overlay->pitches,
- overlay->hw_overlay);*/
-
- if ((long)overlay->pixels[0] & 3)
- fprintf(stderr, "warning: overlay pointer is unaligned\n");
-
- if (!overlay->hw_overlay) {
- fprintf(stderr, "warning: video overlay is not hardware accelerated, "
- "disabling it.\n");
- g_use_overlay = 0;
- SDL_FreeYUVOverlay(overlay);
- overlay = NULL;
- }
- else
- overlay_clear();
- }
- else {
- fprintf(stderr, "warning: could not create overlay.\n");
- }
- }
-
- if (overlay == NULL) {
- screen = SDL_SetVideoMode(w, h, 16, 0);
- if (screen == NULL) {
- fprintf(stderr, "SDL_SetVideoMode failed: %s\n", SDL_GetError());
- return -1;
- }
-
- if (!in_menu) {
- window_w = screen->w;
- window_h = screen->h;
- }
+ else {
+ w = psx_w;
+ h = psx_h;
}
- old_fullscreen = g_fullscreen;
- return 0;
-}
-
-static void event_handler(void *event_)
-{
- SDL_Event *event = event_;
-
- if (event->type == SDL_VIDEORESIZE) {
- //printf("%dx%d\n", event->resize.w, event->resize.h);
- if (overlay != NULL && !g_fullscreen && !old_fullscreen) {
- window_w = event->resize.w;
- window_h = event->resize.h;
- change_video_mode(psx_w, psx_h);
- }
- }
+ return plat_sdl_change_video_mode(w, h);
}
void plat_init(void)
{
- const SDL_VideoInfo *info;
- int ret, h;
+ int ret;
- ret = SDL_Init(SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE);
- if (ret != 0) {
- fprintf(stderr, "SDL_Init failed: %s\n", SDL_GetError());
+ ret = plat_sdl_init();
+ if (ret != 0)
exit(1);
- }
-
- info = SDL_GetVideoInfo();
- if (info != NULL) {
- fs_w = info->current_w;
- fs_h = info->current_h;
- }
in_menu = 1;
- g_menuscreen_w = 640;
- if (fs_w != 0 && g_menuscreen_w > fs_w)
- g_menuscreen_w = fs_w;
- g_menuscreen_h = 480;
- if (fs_h != 0) {
- h = fs_h;
- if (info && info->wm_available && h > WM_DECORATION_H)
- h -= WM_DECORATION_H;
- if (g_menuscreen_h > h)
- g_menuscreen_h = h;
- }
-
- ret = change_video_mode(g_menuscreen_w, g_menuscreen_h);
- if (ret != 0) {
- ret = change_video_mode(0, 0);
- if (ret != 0)
- goto fail;
-
- if (screen->w < 320 || screen->h < 240) {
- fprintf(stderr, "resolution %dx%d is too small, sorry.\n",
- screen->w, screen->h);
- goto fail;
- }
- }
- g_menuscreen_w = window_w = screen->w;
- g_menuscreen_h = window_h = screen->h;
-
SDL_WM_SetCaption("PCSX-ReARMed " REV, NULL);
+ shadow_fb = malloc(640 * 512 * 2);
menubg_img = malloc(640 * 512 * 2);
- if (menubg_img == NULL)
- goto fail;
+ if (shadow_fb == NULL || menubg_img == NULL) {
+ fprintf(stderr, "OOM\n");
+ exit(1);
+ }
- in_sdl_init(in_sdl_defbinds, event_handler);
+ in_sdl_init(in_sdl_defbinds, plat_sdl_event_handler);
in_probe();
pl_rearmed_cbs.only_16bpp = 1;
bgr_to_uyvy_init();
- return;
-
-fail:
- SDL_Quit();
- exit(1);
}
void plat_finish(void)
{
+ free(shadow_fb);
+ shadow_fb = NULL;
free(menubg_img);
menubg_img = NULL;
- SDL_Quit();
+ plat_sdl_finish();
}
void plat_gvideo_open(int is_pal)
@@ -238,28 +128,15 @@ static void uyvy_to_rgb565(void *d, const void *s, int pixels)
}
}
-static void overlay_clear(void)
-{
- int pixels = overlay->w * overlay->h;
- int *dst = (int *)overlay->pixels[0];
- int v = 0x10801080;
-
- for (; pixels > 0; dst += 4, pixels -= 2 * 4)
- dst[0] = dst[1] = dst[2] = dst[3] = v;
-
- for (; pixels > 0; dst++, pixels -= 2)
- *dst = v;
-}
-
static void overlay_blit(int doffs, const void *src_, int w, int h,
int sstride, int bgr24)
{
const unsigned short *src = src_;
unsigned short *dst;
- int dstride = overlay->w;
+ int dstride = plat_sdl_overlay->w;
- SDL_LockYUVOverlay(overlay);
- dst = (void *)overlay->pixels[0];
+ SDL_LockYUVOverlay(plat_sdl_overlay);
+ dst = (void *)plat_sdl_overlay->pixels[0];
dst += doffs;
if (bgr24) {
@@ -271,21 +148,23 @@ static void overlay_blit(int doffs, const void *src_, int w, int h,
bgr555_to_uyvy(dst, src, w);
}
- SDL_UnlockYUVOverlay(overlay);
+ SDL_UnlockYUVOverlay(plat_sdl_overlay);
}
static void overlay_hud_print(int x, int y, const char *str, int bpp)
{
- SDL_LockYUVOverlay(overlay);
- basic_text_out_uyvy_nf(overlay->pixels[0], overlay->w, x, y, str);
- SDL_UnlockYUVOverlay(overlay);
+ SDL_LockYUVOverlay(plat_sdl_overlay);
+ basic_text_out_uyvy_nf(plat_sdl_overlay->pixels[0], plat_sdl_overlay->w, x, y, str);
+ SDL_UnlockYUVOverlay(plat_sdl_overlay);
}
void *plat_gvideo_set_mode(int *w, int *h, int *bpp)
{
- change_video_mode(*w, *h);
- if (overlay != NULL) {
- pl_plat_clear = overlay_clear;
+ psx_w = *w;
+ psx_h = *h;
+ change_video_mode();
+ if (plat_sdl_overlay != NULL) {
+ pl_plat_clear = plat_sdl_overlay_clear;
pl_plat_blit = overlay_blit;
pl_plat_hud_print = overlay_hud_print;
return NULL;
@@ -294,21 +173,28 @@ void *plat_gvideo_set_mode(int *w, int *h, int *bpp)
pl_plat_clear = NULL;
pl_plat_blit = NULL;
pl_plat_hud_print = NULL;
- return screen->pixels;
+ if (plat_sdl_gl_active)
+ return shadow_fb;
+ else
+ return plat_sdl_screen->pixels;
}
}
void *plat_gvideo_flip(void)
{
- if (!in_menu && overlay != NULL) {
- SDL_Rect dstrect = { 0, 0, screen->w, screen->h };
- SDL_DisplayYUVOverlay(overlay, &dstrect);
+ if (plat_sdl_overlay != NULL) {
+ SDL_Rect dstrect = { 0, 0, plat_sdl_screen->w, plat_sdl_screen->h };
+ SDL_DisplayYUVOverlay(plat_sdl_overlay, &dstrect);
return NULL;
}
+ else if (plat_sdl_gl_active) {
+ gl_flip(shadow_fb, psx_w, psx_h);
+ return shadow_fb;
+ }
else {
- // XXX: missing SDL_LockSurface()
- SDL_Flip(screen);
- return screen->pixels;
+ // XXX: no locking, but should be fine with SDL_SWSURFACE?
+ SDL_Flip(plat_sdl_screen);
+ return plat_sdl_screen->pixels;
}
}
@@ -321,25 +207,47 @@ void plat_video_menu_enter(int is_rom_loaded)
in_menu = 1;
/* surface will be lost, must adjust pl_vout_buf for menu bg */
- if (overlay != NULL)
- uyvy_to_rgb565(menubg_img, overlay->pixels[0], psx_w * psx_h);
+ if (plat_sdl_overlay != NULL)
+ uyvy_to_rgb565(menubg_img, plat_sdl_overlay->pixels[0], psx_w * psx_h);
+ else if (plat_sdl_gl_active)
+ memcpy(menubg_img, shadow_fb, psx_w * psx_h * 2);
else
- memcpy(menubg_img, screen->pixels, psx_w * psx_h * 2);
+ memcpy(menubg_img, plat_sdl_screen->pixels, psx_w * psx_h * 2);
pl_vout_buf = menubg_img;
- change_video_mode(g_menuscreen_w, g_menuscreen_h);
+ change_video_mode();
}
void plat_video_menu_begin(void)
{
- SDL_LockSurface(screen);
- g_menuscreen_ptr = screen->pixels;
+ if (plat_sdl_overlay != NULL || plat_sdl_gl_active) {
+ g_menuscreen_ptr = shadow_fb;
+ }
+ else {
+ SDL_LockSurface(plat_sdl_screen);
+ g_menuscreen_ptr = plat_sdl_screen->pixels;
+ }
}
void plat_video_menu_end(void)
{
- SDL_UnlockSurface(screen);
- SDL_Flip(screen);
+ if (plat_sdl_overlay != NULL) {
+ SDL_Rect dstrect = { 0, 0, plat_sdl_screen->w, plat_sdl_screen->h };
+
+ SDL_LockYUVOverlay(plat_sdl_overlay);
+ rgb565_to_uyvy(plat_sdl_overlay->pixels[0], shadow_fb,
+ g_menuscreen_w * g_menuscreen_h);
+ SDL_UnlockYUVOverlay(plat_sdl_overlay);
+
+ SDL_DisplayYUVOverlay(plat_sdl_overlay, &dstrect);
+ }
+ else if (plat_sdl_gl_active) {
+ gl_flip(g_menuscreen_ptr, g_menuscreen_w, g_menuscreen_h);
+ }
+ else {
+ SDL_UnlockSurface(plat_sdl_screen);
+ SDL_Flip(plat_sdl_screen);
+ }
g_menuscreen_ptr = NULL;
}
diff --git a/plugins/gpu-gles/Makefile b/plugins/gpu-gles/Makefile
index 421a6e7..769a68b 100644
--- a/plugins/gpu-gles/Makefile
+++ b/plugins/gpu-gles/Makefile
@@ -12,7 +12,8 @@ ifeq "$(PLATFORM)" "caanoo"
CFLAGS += -DFAKE_WINDOW
LDLIBS += -lopengles_lite -lstdc++
else
-LDLIBS += -lGLES_CM
+CFLAGS += $(CFLAGS_GLES)
+LDLIBS += $(LDLIBS_GLES)
endif
BIN_STANDLALONE = gpuGLES.so
diff --git a/plugins/gpulib/cspace.c b/plugins/gpulib/cspace.c
index 8e3bee9..f0c4912 100644
--- a/plugins/gpulib/cspace.c
+++ b/plugins/gpulib/cspace.c
@@ -91,6 +91,35 @@ void bgr_to_uyvy_init(void)
}
}
+void rgb565_to_uyvy(void *d, const void *s, int pixels)
+{
+ unsigned int *dst = d;
+ const unsigned short *src = s;
+ const unsigned char *yu = yuv_u + 32;
+ const unsigned char *yv = yuv_v + 32;
+ int r0, g0, b0, r1, g1, b1;
+ int y0, y1, u, v;
+
+ for (; pixels > 0; src += 2, dst++, pixels -= 2)
+ {
+ r0 = (src[0] >> 11) & 0x1f;
+ g0 = (src[0] >> 6) & 0x1f;
+ b0 = src[0] & 0x1f;
+ r1 = (src[1] >> 11) & 0x1f;
+ g1 = (src[1] >> 6) & 0x1f;
+ b1 = src[1] & 0x1f;
+ y0 = (yuv_ry[r0] + yuv_gy[g0] + yuv_by[b0]) >> 16;
+ y1 = (yuv_ry[r1] + yuv_gy[g1] + yuv_by[b1]) >> 16;
+ u = yu[b0 - y0];
+ v = yv[r0 - y0];
+ // valid Y range seems to be 16..235
+ y0 = 16 + 219 * y0 / 31;
+ y1 = 16 + 219 * y1 / 31;
+
+ *dst = (y1 << 24) | (v << 16) | (y0 << 8) | u;
+ }
+}
+
void bgr555_to_uyvy(void *d, const void *s, int pixels)
{
unsigned int *dst = d;
@@ -112,7 +141,6 @@ void bgr555_to_uyvy(void *d, const void *s, int pixels)
y1 = (yuv_ry[r1] + yuv_gy[g1] + yuv_by[b1]) >> 16;
u = yu[b0 - y0];
v = yv[r0 - y0];
- // valid Y range seems to be 16..235
y0 = 16 + 219 * y0 / 31;
y1 = 16 + 219 * y1 / 31;
diff --git a/plugins/gpulib/cspace.h b/plugins/gpulib/cspace.h
index 95eae85..1a9e339 100644
--- a/plugins/gpulib/cspace.h
+++ b/plugins/gpulib/cspace.h
@@ -9,6 +9,7 @@ void bgr888_to_rgb565(void *dst, const void *src, int bytes);
void rgb888_to_rgb565(void *dst, const void *src, int bytes);
void bgr_to_uyvy_init(void);
+void rgb565_to_uyvy(void *d, const void *s, int pixels);
void bgr555_to_uyvy(void *d, const void *s, int pixels);
void bgr888_to_uyvy(void *d, const void *s, int pixels);