mirror of
https://github.com/libretro/RetroArch
synced 2025-01-29 18:32:44 +00:00
25 lines
395 B
C
25 lines
395 B
C
|
#ifndef VITA_COMMON_H__
|
||
|
#define VITA_COMMON_H__
|
||
|
|
||
|
#include "../deps/Pigs-In-A-Blanket/include/pib.h"
|
||
|
|
||
|
#ifdef HAVE_EGL
|
||
|
#include "../common/egl_common.h"
|
||
|
#endif
|
||
|
|
||
|
#define ATTR_VITA_WIDTH 960
|
||
|
#define ATTR_VITA_HEIGHT 544
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
#ifdef HAVE_EGL
|
||
|
egl_ctx_data_t egl;
|
||
|
#endif
|
||
|
int native_window;
|
||
|
bool resize;
|
||
|
unsigned width, height;
|
||
|
float refresh_rate;
|
||
|
} vita_ctx_data_t;
|
||
|
|
||
|
#endif
|