Header include cleanups

This commit is contained in:
twinaphex 2019-01-31 20:43:07 +01:00
parent fe02db911d
commit 9e6cd04df4
3 changed files with 11 additions and 11 deletions

View file

@ -25,7 +25,7 @@
#include <retro_common_api.h>
#include <retro_miscellaneous.h>
#include "gfx/video_driver.h"
#include "gfx/video_defines.h"
#include "input/input_defines.h"
#include "led/led_defines.h"

View file

@ -135,6 +135,16 @@ enum text_alignment
#define FONT_COLOR_GET_ALPHA(col) (((col) >> 0) & 0xff)
#define FONT_COLOR_ARGB_TO_RGBA(col) ( (((col) >> 24) & 0xff) | (((unsigned)(col) << 8) & 0xffffff00) )
typedef struct video_viewport
{
int x;
int y;
unsigned width;
unsigned height;
unsigned full_width;
unsigned full_height;
} video_viewport_t;
RETRO_END_DECLS
#endif

View file

@ -681,16 +681,6 @@ typedef struct gfx_ctx_ident
const char *ident;
} gfx_ctx_ident_t;
typedef struct video_viewport
{
int x;
int y;
unsigned width;
unsigned height;
unsigned full_width;
unsigned full_height;
} video_viewport_t;
struct aspect_ratio_elem
{
char name[64];