mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
899c21257c
rename them - cleanup strcmp usage in video layout and other code cleanups
30 lines
1.1 KiB
C
30 lines
1.1 KiB
C
#ifndef VIDEO_LAYOUT_INTERNAL_H
|
|
#define VIDEO_LAYOUT_INTERNAL_H
|
|
|
|
#include <stddef.h>
|
|
#include <boolean.h>
|
|
#include <retro_miscellaneous.h>
|
|
|
|
#include "types.h"
|
|
|
|
bool vec_size (void **target, size_t elem_size, int count);
|
|
|
|
bool is_decimal (const char *str);
|
|
int get_int (const char *str);
|
|
float get_dec (const char *str);
|
|
|
|
video_layout_color_t make_color (void);
|
|
video_layout_color_t make_color_white (void);
|
|
video_layout_color_t make_color_v (float v);
|
|
video_layout_color_t make_color_rgb (float r, float g, float b);
|
|
video_layout_color_t make_color_rgba (float r, float g, float b, float a);
|
|
void color_mod (video_layout_color_t *dst, const video_layout_color_t *src);
|
|
|
|
video_layout_bounds_t make_bounds (void);
|
|
video_layout_bounds_t make_bounds_unit (void);
|
|
video_layout_bounds_t bounds_union (const video_layout_bounds_t *a, const video_layout_bounds_t *b);
|
|
void bounds_scale (video_layout_bounds_t *dst, const video_layout_bounds_t *dim);
|
|
bool bounds_valid (const video_layout_bounds_t *bounds);
|
|
|
|
#endif
|