ifeq "$(BUILTIN_GPU)" "unai"
CFLAGS += -DGPU_UNAI
CFLAGS += -DUSE_GPULIB=1
-ifeq "$(THREAD_RENDERING)" "1"
-CFLAGS += -DTHREAD_RENDERING
-OBJS += plugins/gpulib/gpulib_thread_if.o
-endif
#CFLAGS += -DINLINE="static __inline__"
#CFLAGS += -Dasm="__asm__ __volatile__"
OBJS += plugins/gpu_unai/gpulib_if.o
plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3
CC_LINK = $(CXX)
endif
+ifeq "$(THREAD_RENDERING)" "1"
+CFLAGS += -DTHREAD_RENDERING
+OBJS += plugins/gpulib/gpulib_thread_if.o
+endif
# cdrcimg
OBJS += plugins/cdrcimg/cdrcimg.o
#include <string.h>
#include "../gpulib/gpu.h"
+#ifdef THREAD_RENDERING
+#include "../gpulib/gpulib_thread_if.h"
+#define do_cmd_list real_do_cmd_list
+#define renderer_init real_renderer_init
+#define renderer_finish real_renderer_finish
+#define renderer_sync_ecmds real_renderer_sync_ecmds
+#define renderer_update_caches real_renderer_update_caches
+#define renderer_flush_queues real_renderer_flush_queues
+#define renderer_set_interlace real_renderer_set_interlace
+#define renderer_set_config real_renderer_set_config
+#define renderer_notify_res_change real_renderer_notify_res_change
+#define renderer_notify_update_lace real_renderer_notify_update_lace
+#define renderer_sync real_renderer_sync
+#define ex_regs scratch_ex_regs
+#endif
+
#define u32 uint32_t
#define INFO_TW 0
***************************************************************************/
#include <stdlib.h>
+#include <stdio.h>
#include <string.h>
#include <pthread.h>
#include "../gpulib/gpu.h"
#include "../../frontend/plugin_lib.h"
#include "gpulib_thread_if.h"
+#define FALSE 0
+#define TRUE 1
+#define BOOL unsigned short
+
typedef struct {
uint32_t *cmd_list;
int count;
pthread_cond_t cond_queue_empty;
video_thread_queue *queue;
video_thread_queue *bg_queue;
- bool running;
+ BOOL running;
} video_thread_state;
static video_thread_state thread;
static video_thread_queue queues[2];
static int thread_rendering;
-static bool hold_cmds;
-static bool needs_display;
+static BOOL hold_cmds;
+static BOOL needs_display;
extern const unsigned char cmd_lengths[];
video_thread_state *thread = (video_thread_state *)arg;
video_thread_cmd *cmd;
int i;
+
+#ifdef _3DS
static int processed = 0;
+#endif /* _3DS */
while(1) {
int result, last_cmd, start, end;
svcSleepThread(1);
processed %= 512;
}
-#endif
+#endif /* _3DS */
}
pthread_mutex_lock(&thread->queue_lock);
tmp = thread.queue;
thread.queue = thread.bg_queue;
thread.bg_queue = tmp;
- needs_display = true;
+ needs_display = TRUE;
pthread_cond_signal(&thread.cond_msg_avail);
}
pthread_mutex_unlock(&thread.queue_lock);
* drop a frame. */
renderer_wait();
cmd_queue_swap();
- hold_cmds = false;
+ hold_cmds = FALSE;
renderer_wait();
}
renderer_sync();
if (thread.running) {
- thread.running = false;
+ thread.running = FALSE;
pthread_cond_signal(&thread.cond_msg_avail);
pthread_join(thread.thread, NULL);
}
thread.queue = &queues[0];
thread.bg_queue = &queues[1];
- thread.running = true;
+ thread.running = TRUE;
return;
error:
video_thread_cmd *cmd;
uint32_t *cmd_list;
video_thread_queue *queue;
- bool lock;
+ BOOL lock;
cmd_list = (uint32_t *)calloc(count, sizeof(uint32_t));
if (hold_cmds) {
queue = thread.bg_queue;
- lock = false;
+ lock = FALSE;
} else {
queue = thread.queue;
- lock = true;
+ lock = TRUE;
}
if (lock) {
/* We are no longer holding commands back, so the next frame may
* get mixed into the following frame. This is usually fine, but can
* result in frameskip-like effects for 60fps games. */
- hold_cmds = false;
- needs_display = true;
- gpu.state.fb_dirty = true;
+ hold_cmds = FALSE;
+ needs_display = TRUE;
+ gpu.state.fb_dirty = TRUE;
} else if (thread.queue->used) {
/* We are still drawing during a vblank. Cut off the current frame
* by sending new commands to the background queue and skip
* drawing our partly rendered frame to the display. */
- hold_cmds = true;
- needs_display = true;
- gpu.state.fb_dirty = false;
+ hold_cmds = TRUE;
+ needs_display = TRUE;
+ gpu.state.fb_dirty = FALSE;
} else if (needs_display && !thread.queue->used) {
/* We have processed all commands in the queue, render the
* buffer. We know we have something to render, because
- * needs_display is true. */
- hold_cmds = false;
- needs_display = false;
- gpu.state.fb_dirty = true;
+ * needs_display is TRUE. */
+ hold_cmds = FALSE;
+ needs_display = FALSE;
+ gpu.state.fb_dirty = TRUE;
} else {
/* Everything went normally, so do the normal thing. */
}