Skip to content
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1807 from reicast/skmp/real-ta-pvr-2
Browse files Browse the repository at this point in the history
Primitive Reference Renderer
  • Loading branch information
skmp authored Feb 20, 2020
2 parents 1cdc03e + 9840247 commit 40ec99f
Show file tree
Hide file tree
Showing 22 changed files with 3,064 additions and 23 deletions.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ set(d_core ${reicast_core_path})
message(${d_core})

file(GLOB_RECURSE hw_SRCS ${d_core}/hw/*.cpp ${d_core}/hw/*.h)
file(GLOB_RECURSE lxdream_SRCS ${d_core}/gpl/lxdream/*.cpp ${d_core}/gpl/lxdream/*.h)

file(GLOB cfg_SRCS ${d_core}/cfg/*.cpp ${d_core}/cfg/*.h)
file(GLOB rend_SRCS ${d_core}/rend/*.cpp ${d_core}/rend/*.h)
Expand Down Expand Up @@ -77,6 +78,7 @@ if(${HOST_OS} EQUAL ${OS_WINDOWS})
endif()

set(core_SRCS
${lxdream_SRCS}
${hw_SRCS}
${cfg_SRCS}
${rend_SRCS}
Expand Down
8 changes: 8 additions & 0 deletions libswirl/build.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,20 @@
#define LICENSE_LGPL 0x50000002
#define LICENSE_GPL 0x50000003

//FEAT_TA
#define TA_HLE 0x60000001
#define TA_LLE 0x60000002

//automatic

#if !defined(TARGET_LICENSE)
#define TARGET_LICENSE LICENSE_GPL
#endif

#if !defined(FEAT_TA)
#define FEAT_TA TA_HLE
#endif

#ifndef CMAKE_BUILD

#if defined(_WIN32) && !defined(TARGET_WIN86) && !defined(TARGET_WIN64)
Expand Down
Loading

0 comments on commit 40ec99f

Please sign in to comment.