diff options
author | Autechre | 2020-10-23 05:06:26 +0200 |
---|---|---|
committer | GitHub | 2020-10-23 05:06:26 +0200 |
commit | accedc82b01fe5834a805a9872405d51de1d5c06 (patch) | |
tree | 8e489b86af71d3b081c125d5eb234b0fd6b68f17 /Makefile | |
parent | e592293a48af1d63b6973135fcd2677e5e04e17e (diff) | |
parent | c765eb86debdc06fe304511bc2edbb6f3e3d7813 (diff) | |
download | pcsx_rearmed-accedc82b01fe5834a805a9872405d51de1d5c06.tar.gz pcsx_rearmed-accedc82b01fe5834a805a9872405d51de1d5c06.tar.bz2 pcsx_rearmed-accedc82b01fe5834a805a9872405d51de1d5c06.zip |
Merge pull request #462 from justinweiss/threaded-rendering
Add a threaded renderer
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -184,6 +184,10 @@ endif 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 |