Skip to content

Commit 2dfe47e

Browse files
committed
added crt monitor shader
1 parent 10eca01 commit 2dfe47e

File tree

14 files changed

+4286
-97
lines changed

14 files changed

+4286
-97
lines changed

.gitmodules

+4
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,7 @@
8282
path = vendor/pocketpy
8383
url = https://github.com/PrimedErwin/pocketpy.git
8484
shallow = true
85+
[submodule "vendor/sokol-tools-bin"]
86+
path = vendor/sokol-tools-bin
87+
url = https://github.com/floooh/sokol-tools-bin.git
88+
shallow = true

CMakeLists.txt

-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ set(BUILD_STATIC_DEFAULT ON)
2828

2929
set(BUILD_PLAYER_DEFAULT OFF)
3030
set(BUILD_LIBRETRO_DEFAULT OFF)
31-
set(BUILD_TOUCH_INPUT_DEFAULT ${ANDROID})
3231
set(BUILD_WITH_ALL_DEFAULT OFF)
3332

3433
option(BUILD_STATIC "Static runtime" ${BUILD_STATIC_DEFAULT})
@@ -39,7 +38,6 @@ option(BUILD_TOOLS "bin2txt prj2cart" OFF)
3938
option(BUILD_EDITORS "Build cart editors" ON)
4039
option(BUILD_PRO "Build PRO version" OFF)
4140
option(BUILD_PLAYER "Build standalone players" ${BUILD_PLAYER_DEFAULT})
42-
option(BUILD_TOUCH_INPUT "Build with touch input support" ${BUILD_TOUCH_INPUT_DEFAULT})
4341
option(BUILD_NO_OPTIMIZATION "Build without optimizations for debugging" OFF)
4442
option(BUILD_ASAN_DEBUG "Build with AddressSanitizer" OFF)
4543
option(BUILD_WITH_ZLIB "Build with zlib linked" ON)
@@ -62,7 +60,6 @@ target_compile_definitions(runtime INTERFACE BUILD_DEPRECATED)
6260

6361
message("BUILD_STATIC: ${BUILD_STATIC}")
6462
message("BUILD_SOKOL: ${BUILD_SOKOL}")
65-
message("BUILD_TOUCH_INPUT: ${BUILD_TOUCH_INPUT}")
6663
message("BUILD_WITH_ALL: ${BUILD_WITH_ALL}")
6764
message("BUILD_PLAYER: ${BUILD_PLAYER}")
6865

0 commit comments

Comments
 (0)