mirror of
https://github.com/libretro/RetroArch
synced 2025-02-22 12:40:09 +00:00
(xvideo.c) Style nits
This commit is contained in:
parent
77ba9c650f
commit
5068e2ddbf
@ -408,16 +408,17 @@ static void *xv_init(const video_info_t *video,
|
|||||||
const input_driver_t **input, void **input_data)
|
const input_driver_t **input, void **input_data)
|
||||||
{
|
{
|
||||||
unsigned i;
|
unsigned i;
|
||||||
struct sigaction sa;
|
char buf[128], buf_fps[128];
|
||||||
|
struct sigaction sa = {{0}};
|
||||||
|
XSetWindowAttributes attributes = {0};
|
||||||
|
XVisualInfo visualtemplate = {0};
|
||||||
|
unsigned width = 0;
|
||||||
|
unsigned height = 0;
|
||||||
unsigned adaptor_count = 0;
|
unsigned adaptor_count = 0;
|
||||||
int visualmatches = 0;
|
int visualmatches = 0;
|
||||||
XSetWindowAttributes attributes = {0};
|
|
||||||
unsigned width = 0, height = 0;
|
|
||||||
char buf[128], buf_fps[128];
|
|
||||||
Atom atom = 0;
|
Atom atom = 0;
|
||||||
void *xinput = NULL;
|
void *xinput = NULL;
|
||||||
XVisualInfo *visualinfo = NULL;
|
XVisualInfo *visualinfo = NULL;
|
||||||
XVisualInfo visualtemplate = {0};
|
|
||||||
XvAdaptorInfo *adaptor_info = NULL;
|
XvAdaptorInfo *adaptor_info = NULL;
|
||||||
driver_t *driver = driver_get_ptr();
|
driver_t *driver = driver_get_ptr();
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
@ -541,12 +542,13 @@ static void *xv_init(const video_info_t *video,
|
|||||||
RARCH_ERR("XVideo: XShmCreateImage failed.\n");
|
RARCH_ERR("XVideo: XShmCreateImage failed.\n");
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
xv->width = xv->image->width;
|
xv->width = xv->image->width;
|
||||||
xv->height = xv->image->height;
|
xv->height = xv->image->height;
|
||||||
|
|
||||||
xv->shminfo.shmid = shmget(IPC_PRIVATE, xv->image->data_size, IPC_CREAT | 0777);
|
xv->shminfo.shmid = shmget(IPC_PRIVATE, xv->image->data_size, IPC_CREAT | 0777);
|
||||||
xv->shminfo.shmaddr = xv->image->data = (char*)shmat(xv->shminfo.shmid, NULL, 0);
|
xv->shminfo.shmaddr = xv->image->data = (char*)shmat(xv->shminfo.shmid, NULL, 0);
|
||||||
xv->shminfo.readOnly = false;
|
xv->shminfo.readOnly = false;
|
||||||
|
|
||||||
if (!XShmAttach(xv->display, &xv->shminfo))
|
if (!XShmAttach(xv->display, &xv->shminfo))
|
||||||
{
|
{
|
||||||
RARCH_ERR("XVideo: XShmAttach failed.\n");
|
RARCH_ERR("XVideo: XShmAttach failed.\n");
|
||||||
|
@ -53,12 +53,12 @@ cothread_t co_create(unsigned int size, void (*coentry)(void))
|
|||||||
|
|
||||||
if(thread)
|
if(thread)
|
||||||
{
|
{
|
||||||
struct sigaction handler;
|
|
||||||
struct sigaction old_handler;
|
|
||||||
|
|
||||||
stack_t stack;
|
stack_t stack;
|
||||||
stack_t old_stack;
|
stack_t old_stack;
|
||||||
|
|
||||||
|
struct sigaction handler = {{0}};
|
||||||
|
struct sigaction old_handler = {{0}};
|
||||||
|
|
||||||
thread->coentry = thread->stack = 0;
|
thread->coentry = thread->stack = 0;
|
||||||
|
|
||||||
stack.ss_flags = 0;
|
stack.ss_flags = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user