Results 23 comments of Weedy Weed Smoker

I had to switch to another adblocker for the moment… The latest macOS updates for Big Sur and Monterey are somehow causing AdGuard to make the "kernel_task" process use all...

@m4xw Yeah, I saw your rebase branch but didn't try to compile it yet at the time… It fails with this error: ``` Undefined symbols for architecture arm64: "_using_tlb", referenced...

@m4xw Ok, it compiles fine, but it's still plagued by the black textures issue reported earlier…

@m4xw Yeah, cleared both the cache folder and the shaders folder… Here is what Yoshi's story looks like for example with @jet082's fork: ![IMG_0497](https://user-images.githubusercontent.com/26014958/85777124-892bca00-b74b-11ea-80fc-37e2c7eaffde.jpg) (there is an error appearing in...

Ok, I'm compiling it… In the meantime, here's the log from just applying your patch to make gliden64 verbose: ``` 2020/06/26,01:44:00.938,mupen64plus_DisplayWindow.cpp:59,VERBOSE, "[GlideN64]: _setAttributes" 2020/06/26,01:44:00.942,mupen64plus_DisplayWindow.cpp:78,VERBOSE, "[GlideN64]: Create setting videomode 640x480" 2020/06/26,01:44:00.943,opengl_GLInfo.cpp:46,VERBOSE,...

I'm having a hard time compiling for GLES2… I get a bunch of ``` error: unknown type name 'khronos_ssize_t' _Tp* __cxx_atomic_fetch_add(__cxx_atomic_base_impl volatile* __a, ptrdiff_t __delta, memory_order __order) { ^ ./libretro-common/include/glsm/glsm.h:40:19:...

Ok, compiled… I added ``` #ifndef IOS #define ptrdiff_t khronos_ssize_t #endif ``` to glsm.h and changed ``` #elif defined(OS_IOS) #include #include ``` to ``` #elif defined(OS_IOS) #include #include ``` in...

The black texture issue is still present on the GLES2 compiled build… Here's the gliden64 log: ``` 2020/06/26,02:26:35.731,mupen64plus_DisplayWindow.cpp:59,VERBOSE, "[GlideN64]: _setAttributes" 2020/06/26,02:26:35.735,mupen64plus_DisplayWindow.cpp:78,VERBOSE, "[GlideN64]: Create setting videomode 640x480" 2020/06/26,02:26:35.736,opengl_GLInfo.cpp:46,VERBOSE, "OpenGL ES major...

Adding it to `PLATCFLAGS` and `CXX` in the makefile gives me about the same errors as adding it to the `GLFLAGS` in the Makefile.common: ``` In file included from GLideN64/src/Graphics/OpenGLContext/GLFunctions.cpp:6:...

@m4xw Same error with an older SDK with ES3 headers referenced… I don't know if the changes I made actually made it compile for GLES2, can you check? I posted...