mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-28 02:30:35 +00:00
196 lines
5.5 KiB
C
196 lines
5.5 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
|
*
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __MENU_DISPLAY_H__
|
|
#define __MENU_DISPLAY_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <boolean.h>
|
|
|
|
#include "../gfx/video_texture.h"
|
|
#include "../gfx/video_context_driver.h"
|
|
#include "../gfx/font_driver.h"
|
|
#include "../gfx/video_common.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
enum menu_display_ctl_state
|
|
{
|
|
MENU_DISPLAY_CTL_SET_VIEWPORT = 0,
|
|
MENU_DISPLAY_CTL_UNSET_VIEWPORT,
|
|
MENU_DISPLAY_CTL_GET_FRAMEBUFFER_DIRTY_FLAG,
|
|
MENU_DISPLAY_CTL_SET_FRAMEBUFFER_DIRTY_FLAG,
|
|
MENU_DISPLAY_CTL_UNSET_FRAMEBUFFER_DIRTY_FLAG,
|
|
MENU_DISPLAY_CTL_GET_DPI,
|
|
MENU_DISPLAY_CTL_UPDATE_PENDING,
|
|
MENU_DISPLAY_CTL_WIDTH,
|
|
MENU_DISPLAY_CTL_HEIGHT,
|
|
MENU_DISPLAY_CTL_HEADER_HEIGHT,
|
|
MENU_DISPLAY_CTL_SET_HEADER_HEIGHT,
|
|
MENU_DISPLAY_CTL_SET_WIDTH,
|
|
MENU_DISPLAY_CTL_SET_HEIGHT,
|
|
MENU_DISPLAY_CTL_FB_DATA,
|
|
MENU_DISPLAY_CTL_SET_FB_DATA,
|
|
MENU_DISPLAY_CTL_FB_PITCH,
|
|
MENU_DISPLAY_CTL_SET_FB_PITCH,
|
|
MENU_DISPLAY_CTL_LIBRETRO,
|
|
MENU_DISPLAY_CTL_LIBRETRO_RUNNING,
|
|
MENU_DISPLAY_CTL_SET_STUB_DRAW_FRAME,
|
|
MENU_DISPLAY_CTL_UNSET_STUB_DRAW_FRAME,
|
|
MENU_DISPLAY_CTL_FONT_DATA_INIT,
|
|
MENU_DISPLAY_CTL_SET_FONT_DATA_INIT,
|
|
MENU_DISPLAY_CTL_FONT_SIZE,
|
|
MENU_DISPLAY_CTL_SET_FONT_SIZE,
|
|
MENU_DISPLAY_CTL_MSG_FORCE,
|
|
MENU_DISPLAY_CTL_SET_MSG_FORCE,
|
|
MENU_DISPLAY_CTL_FONT_BUF,
|
|
MENU_DISPLAY_CTL_SET_FONT_BUF,
|
|
MENU_DISPLAY_CTL_FONT_FB,
|
|
MENU_DISPLAY_CTL_SET_FONT_FB
|
|
};
|
|
|
|
enum menu_display_prim_type
|
|
{
|
|
MENU_DISPLAY_PRIM_NONE = 0,
|
|
MENU_DISPLAY_PRIM_TRIANGLESTRIP,
|
|
MENU_DISPLAY_PRIM_TRIANGLES
|
|
};
|
|
|
|
enum menu_display_driver_type
|
|
{
|
|
MENU_VIDEO_DRIVER_GENERIC = 0,
|
|
MENU_VIDEO_DRIVER_OPENGL,
|
|
MENU_VIDEO_DRIVER_DIRECT3D
|
|
};
|
|
|
|
typedef void (*menu_display_draw_t)(float x, float y,
|
|
unsigned width, unsigned height,
|
|
struct gfx_coords *coords,
|
|
void *matrix_data,
|
|
uintptr_t texture,
|
|
enum menu_display_prim_type prim_type
|
|
);
|
|
typedef void (*menu_display_draw_bg_t)(
|
|
unsigned width, unsigned height,
|
|
uintptr_t texture,
|
|
float handle_alpha,
|
|
bool force_transparency,
|
|
float *color,
|
|
float *color2,
|
|
const float *vertex,
|
|
const float *tex_coord,
|
|
size_t vertex_count,
|
|
enum menu_display_prim_type prim_type
|
|
);
|
|
|
|
typedef struct menu_display_ctx_driver
|
|
{
|
|
menu_display_draw_t draw;
|
|
menu_display_draw_bg_t draw_bg;
|
|
void (*blend_begin)(void);
|
|
void (*blend_end)(void);
|
|
void (*restore_clear_color)(void);
|
|
|
|
void (*clear_color)(float r, float g, float b, float a);
|
|
|
|
void *(*get_default_mvp)(void);
|
|
const float *(*get_tex_coords)(void);
|
|
unsigned (*texture_load)(void *data, enum texture_filter_type type);
|
|
void (*texture_unload)(uintptr_t *id);
|
|
bool (*font_init_first)(
|
|
void **font_handle, void *video_data, const char *font_path,
|
|
float font_size);
|
|
enum menu_display_driver_type type;
|
|
const char *ident;
|
|
} menu_display_ctx_driver_t;
|
|
|
|
void menu_display_free(void);
|
|
|
|
bool menu_display_init(void);
|
|
|
|
bool menu_display_font_bind_block(void *userdata);
|
|
|
|
bool menu_display_font_flush_block(void);
|
|
|
|
bool menu_display_init_main_font(const char *font_path, float font_size);
|
|
|
|
void menu_display_free_main_font(void);
|
|
|
|
bool menu_display_ctl(enum menu_display_ctl_state state, void *data);
|
|
|
|
void menu_display_timedate(char *s, size_t len, unsigned time_mode);
|
|
|
|
void menu_display_msg_queue_push(const char *msg, unsigned prio, unsigned duration,
|
|
bool flush);
|
|
|
|
|
|
bool menu_display_driver_init_first(void);
|
|
|
|
void menu_display_draw(float x, float y,
|
|
unsigned width, unsigned height,
|
|
struct gfx_coords *coords,
|
|
void *matrix_data,
|
|
uintptr_t texture,
|
|
enum menu_display_prim_type prim_type
|
|
);
|
|
|
|
void menu_display_draw_bg(
|
|
unsigned width, unsigned height,
|
|
uintptr_t texture,
|
|
float handle_alpha,
|
|
bool force_transparency,
|
|
float *color,
|
|
float *color2,
|
|
const float *vertex,
|
|
const float *tex_coord,
|
|
size_t vertex_count,
|
|
enum menu_display_prim_type prim_type
|
|
);
|
|
|
|
void menu_display_matrix_4x4_rotate_z(void *data, float rotation,
|
|
float scale_x, float scale_y, float scale_z, bool scale_enable);
|
|
|
|
void menu_display_blend_begin(void);
|
|
|
|
void menu_display_blend_end(void);
|
|
|
|
unsigned menu_display_texture_load(void *data,
|
|
enum texture_filter_type filter_type);
|
|
|
|
void menu_display_restore_clear_color(void);
|
|
|
|
void menu_display_clear_color(float r, float g, float b, float a);
|
|
|
|
void menu_display_texture_unload(uintptr_t *id);
|
|
|
|
void menu_display_handle_wallpaper_upload(void *task_data, void *user_data, const char *err);
|
|
|
|
void menu_display_handle_boxart_upload(void *task_data, void *user_data, const char *err);
|
|
|
|
const float *menu_display_get_tex_coords(void);
|
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_gl;
|
|
extern menu_display_ctx_driver_t menu_display_ctx_d3d;
|
|
extern menu_display_ctx_driver_t menu_display_ctx_null;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|