mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-06 23:28:04 -04:00
pandora: add tv layer selection helper
This commit is contained in:
parent
18306c325f
commit
1bc471ebf1
2 changed files with 45 additions and 0 deletions
9
plat.h
9
plat.h
|
@ -16,6 +16,7 @@ struct plat_target {
|
|||
int (*lcdrate_set)(int is_pal);
|
||||
int (*gamma_set)(int val, int black_level);
|
||||
int (*step_volume)(int *volume, int diff);
|
||||
int (*switch_layer)(int which, int enable);
|
||||
const char **vout_methods;
|
||||
int vout_method;
|
||||
int vout_fullscreen;
|
||||
|
@ -83,6 +84,14 @@ static __inline int plat_target_step_volume(int *volume, int diff)
|
|||
return -1;
|
||||
}
|
||||
|
||||
/* switch device graphics layers/overlays */
|
||||
static __inline int plat_target_switch_layer(int which, int enable)
|
||||
{
|
||||
if (plat_target.switch_layer)
|
||||
return plat_target.switch_layer(which, enable);
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* menu: enter (switch bpp, etc), begin/end drawing */
|
||||
void plat_video_menu_enter(int is_rom_loaded);
|
||||
void plat_video_menu_begin(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue