Skip to content

Commit

Permalink
Revert BTW Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
CADIndie committed Aug 29, 2024
1 parent 89543e1 commit 5ad1191
Show file tree
Hide file tree
Showing 15 changed files with 50,126 additions and 62 deletions.
26 changes: 25 additions & 1 deletion src/main/jni/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ HERE_PATH := $(LOCAL_PATH)

LOCAL_PATH := $(HERE_PATH)

include $(CLEAR_VARS)
LOCAL_MODULE := regal
LOCAL_SRC_FILES := GL/libRegal.so
include $(PREBUILT_SHARED_LIBRARY)

include $(CLEAR_VARS)
LOCAL_MODULE := spirv-cross
LOCAL_SRC_FILES := tinywrapper/SPIRVCross/libspirv-cross-c-shared.so
include $(PREBUILT_SHARED_LIBRARY)

include $(CLEAR_VARS)
LOCAL_MODULE := shaderc
LOCAL_SRC_FILES := tinywrapper/shaderc/libshaderc_shared.so
include $(PREBUILT_SHARED_LIBRARY)

include $(CLEAR_VARS)
LOCAL_MODULE := tinywrapper
LOCAL_SHARED_LIBRARIES := regal spirv-cross shaderc
LOCAL_LDLIBS := -lGLESv3
LOCAL_SRC_FILES := tinywrapper/main.c tinywrapper/string_utils.c
LOCAL_C_INCLUDES := $(LOCAL_PATH)/tinywrapper
include $(BUILD_SHARED_LIBRARY)


include $(CLEAR_VARS)
LOCAL_MODULE := openxr_loader
LOCAL_SRC_FILES := libopenxr_loader.so
Expand Down Expand Up @@ -45,7 +69,7 @@ LOCAL_LDLIBS := -ldl -llog -landroid -lGLESv3 -lEGL
# -lGLESv2
LOCAL_MODULE := pojavexec
# LOCAL_CFLAGS += -DDEBUG
LOCAL_SHARED_LIBRARIES := openvr_api
LOCAL_SHARED_LIBRARIES := openvr_api regal
# -DGLES_TEST
LOCAL_SRC_FILES := \
egl_bridge.c \
Expand Down
Loading

0 comments on commit 5ad1191

Please sign in to comment.