ptitSeb

Results 2023 comments of ptitSeb

> Btw, measuring things by some test examples on os4 for now, we found that of course all the cached binaries should be preloaded right on running, because loading binaries...

look closely, it's *no*psa , so it should be 0 to use psa.

Mmmm, wait, on AmigaOS, there is no pre-tests, so the prog_n is 0 by default. What is the version of GLES2 that have this extension available ?

> that one where those new functions added ? 2.9 Yes, that. Because I'll probably need to hardcode prog_n = 1 on AMIGA if OGLES2 driver >= 2.9 for now...

Mmm, wait, I have this in `src/agl/agl.c` I have ``` #define MIN_OGLES2_LIB_VERSION 1 #define MIN_OGLES2_LIB_REVISION 22 ``` So, 1.9 doesn't work...

The error is this: ``` LIBGL: No EGL configs found. LIBGL: ERROR: EGL Error detected: EGL_BAD_CONFIG ``` It found no EGL config, so no GLES context is created. Eveyrthing else...

I haven't tried mythtv yet, but I guess the shader it created are not convered properly... Can you run it with `LIBGL_LOGSHADERERROR=1 LIBGL_COMMENTS=1` to have more detail about the shaders...

For Qt, it is possible your QtOpenGL is compiled for GLES2. You probably need to build it for Desktop OpenGL for this to work (it's always build for GLES2 on...

So. For the "v2" shader, it use textureRectangle stuff, that's not supported yet, so the faillure is normal. Support for those is on my todo... The faillure on the v1.5...

For the QueriesARB: these functions just don't exist in GLES, so there is nothing to wrap (also, gl4es is now more then a simple wrapper, there are a lot of...