Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions GLideN64/src/Graphics/OpenGLContext/opengl_GLInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,11 @@ void GLInfo::init() {

eglImageFramebuffer = eglImage && !isGLES2;

#ifdef WEBOS
eglImage = false;
eglImageFramebuffer = false;
#endif

if (config.frameBufferEmulation.N64DepthCompare != Config::dcDisable) {
if (config.frameBufferEmulation.N64DepthCompare == Config::dcFast) {
if (!imageTexturesInterlock && !n64DepthWithFbFetch) {
Expand Down
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -614,8 +614,15 @@ ifneq (,$(or $(findstring webos,$(CROSS_COMPILE)),$(findstring starfish,$(CROSS_
# default to GLES v2
GLES = 1
endif
CPUFLAGS += -DWEBOS
GL_LIB := -lGLESv2
HAVE_NEON = 1
ifneq (,$(findstring aarch64,$(CROSS_COMPILE)))
WITH_DYNAREC=aarch64
HAVE_NEON = 0
else
WITH_DYNAREC=arm
HAVE_NEON = 1
endif
endif

ifeq ($(STATIC_LINKING), 1)
Expand Down