RetroArch/gfx/common/orbis_common.h

26 lines
415 B
C
Raw Normal View History

2018-12-28 01:27:13 +01:00
#ifndef ORBIS_COMMON_H__
#define ORBIS_COMMON_H__
#ifdef HAVE_EGL
#include <piglet.h>
#include "../common/egl_common.h"
#endif
2019-02-03 15:49:35 -08:00
#define ATTR_ORBISGL_WIDTH 1920
2018-12-28 01:27:13 +01:00
#define ATTR_ORBISGL_HEIGHT 1080
typedef struct
{
#ifdef HAVE_EGL
egl_ctx_data_t egl;
ScePglConfig pgl_config;
#endif
2018-12-28 11:19:28 +01:00
SceWindow native_window;
2018-12-28 01:27:13 +01:00
bool resize;
unsigned width, height;
float refresh_rate;
} orbis_ctx_data_t;
#endif