Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
111 user(s) are online (68 user(s) are browsing Forums)

Members: 0
Guests: 111

more...

Headlines

 
  Register To Post  

« 1 ... 19 20 21 (22) 23 24 25 ... 42 »
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
@Raziel
I for myself never use that GLEW thing for real, but:

GLES (OpenGL ES) its same OGL (OpenGL), just without some stuff. So we have OpenGL ES because it was easy to do than full blown OpenGL. So they on the same level and can be compared.

Now, GLEW its completely different thing, it's some addon which allow to load other extensioins (extensions its just other functions which not present on opengl, or on opengles) in some easy and cross-platform way (at least that how it writen by authors). You probabaluy can use it and with full OpenGL, and with OpenGL ES (not sure, but probabaly).

In general "extension" thing it mostly problem of other OSes where many different drivers, versions, hardware, etc ,etc. I.e. for example they have opengl_1.0. It have some 100% set of fucntions which will works everywhere. Then some driver can add some other fucntionality, or some other hardware, but you can't put new functions to the "standard" which already set, so you have "extensions", which you check in the code, and if it present, you load it, and use, if your driver/hardware didn't have that, then app will not use it, and so no crash when will trying to use function which is not present on choicen driver.

For us on amigaos4 it make no sense to have extensions as extensions, as we have just one ogles2 driver with stable set functions, etc. Lately for sake of easy porting Daniel add to ogles2.library "aglGetProcAddress", so code from other platforms like win32/unixes, can be compiled "as it" (like we call loading of extensions, while we can use it just as direct call to funciton).


So, GLEW its some other (and probabaly for someone easy) way to load those extensions. You can not port it at all and dind't use, just comment it out , and call directly those functions which glew was in hope to load as extensions.

I remember back in past, with MiniGL it was problem to make a GLEW port, because probabaly minigl lack too much of GLEW extensions, so there wasn't many sense probabaly.

With GL4ES which give us better than minigl version of opengl, usage of that GLEW thing probably can be possible. If i remember right, GLEW its just one header file + some little source file, but i can be wrong.



Edited by kas1e on 2019/1/18 17:25:02
Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Just can't stay away
Just can't stay away


See User information
@Raziel

Quote: "The OpenGL Extension Wrangler Library (GLEW) is a cross-platform open-source C/C++ extension loading library. GLEW provides efficient run-time mechanisms for determining which OpenGL extensions are supported on the target platform. OpenGL core and extension functionality is exposed in a single header file." - http://glew.sourceforge.net/

Usage: http://glew.sourceforge.net/basic.html

GLEW is a convenience library that helps to deal with OpenGL extensions. It doesn't add drawing functionality.

GLEW is not needed to port apps, if you can check and handle the required extensions by yourself. For example, SDL2 seems to offer something like: https://wiki.libsdl.org/SDL_GL_Extensi ... 29%7C%28CategoryStruct%29



Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
@Daniel
I wrote you mail 2 days ago about one problem we have with SDL2 fullscreen/window mode switching, but as you didn't answer maybe its just in spam box and you dind't see it, so will try there:

SDL 2.0 can toggle windowed/fullscreen and back with OpenGL windows without losing the GL context (hooray!) via use of SDL_SetWindowFullscreen() function. What mean that context didn't destroyed/created, just the window.

With MiniGL all works fine, as MiniGL's context doesn't use window pointer, but with OGLES2, once we tried to swith between window/fullscreen, we crashes in ogles2's ContextSwapBuffers(), as seems that when window is destroyed, it seems to leave the OGLES context with a dangling window pointer.

Question is: did OGLES2 have any way to update context's window pointer ? So we can add necessary code to SDL2 / OGLES2 part to make it works. And if it didn't, how hard/possible it will be to implement ?

Thanks !

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
It's while since I did it but IIRC porting GLEW was tedious rather than difficult, there's miniGL based port in the src tree of blender. I vaguely remeber a lot of include editing and cross referenceing....

In the blender 2.48/9 port it allows it (amongst over things) to know when shaders are available in the game engine and GUI (ie that they aren't) without any OS4 specific code in the main program.

You would need a seperate port of GLEW for each GL implmentation.

Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Not too shy to talk
Not too shy to talk


See User information
@kas1e
Man, you sent me a mail on Friday at 6 pm. Not even my very best long time customer would expect an answer over the weekend...
Anyway, from what it sounds I'm asuming that you don't use ogles2 correctly. There are two ways how to do a fullscreen <-> window toggle (which usually means a window change):

1. destroy old context, create new context with new window setup. Implies recreating all gles2 objects of course (no matter what SDL2 thinks it can preserve, it has to recreate the stuff if going that route).
2. convenience helper function aglSetParamTags(OGLES2_CCT_WINDOW,Window*,TAG_DONE); (has been added ~ a year ago, see changelog 2018-02-18). SDL2 must use that one if it wants to preserve the context, no way around that.

So, if you don't use (2) correctly, then it won't work. (2) is actually exactly what you asked for in the last line above.

EDIT: actually the function's name is aglSetParams2 / aglSetParamsTags2. The others are deprecated and should be avoided!


Edited by Daytona675x on 2019/2/4 12:57:46
Edited by Daytona675x on 2019/2/4 13:02:22
Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
@Daniel
Thanks a bunch !

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
@All

Want to make some summorize of current state :)

Some of you may read Daniel's facebook where he post some details about new version of ogles2.library where he optimise quite a lot of stuff, which in end result in pretty big perfomance boost in some places.

Then he optimize it even more, and we have some more perfomance gain again.

I will post there results with current public 1.22 version, and latest beta one, so you will see differences. All done on my x5000 / r7-250. I will also put minigl results, where minigl builds possible. So, firstly let's see those ones which have minigl versions:


Neverball/Neverputt 1.5.4, SDL1 versions

Neverball:

minigl 2.2128 fps
ogles2 1.22
57 fps
ogles2 beta
57 fps

Neverputt
:

minigl 2.2161 fps
ogles2 1.22
162 fps
ogles2 beta
378 fps



Feel the difference ! There is visibly very much. There is no mistake : 61 fps vs 378 fps.


Foobillard++ SDL2 (soon to be released)

minigl 2.2118.2 max
ogles2 1.22
54.5 max
ogles2 beta
61.5 max


There is maximum possible fps. Sometime it drops quite well, depent on the situation. Game itself also quite cpu demanding, in the original readme it said "with all details at low, you need minimum 1.6ghz cpu", so for my 2.2ghz on x5000 and with latest ogles2 beta, i can say its playable well on middle settings (on which i do those tests). Minigl version is fully unplayable and slow like slideshow, 18fps in it are maximum possible, sometime it even 5fps.

Quake3 SDL2 versions

1024x768 window mode:

minigl 2.21:  1st run100.72st run 101.03st run100.8
ogles2 1.22
:  1st run91.4,  2st run 91.5,  3st run91.5
ogles2 beta
:  1st run92.4,  2st run 92.9,  3st run93.0

1.5fps to public version

1280x1024 window mode
:

minigl 2.21:  1st run90.6,  2st run 90.6,  3st run90.6
ogles2 1.22
:  1st run83.7,  2st run 83.9,  3st run83.9 
ogles2 beta
:  1st run85.6,  2st run 86.0,  3st run86.0

2fps to public version


So in quake3 is not that much, just 2 more fps. But that with patching code for endian conversion inside of ogles2.library, and when Warp3D nova conversion code will fixed (optimisation didn't works for that code by some reassons) , then patching code from ogles2 can be removed, and it will give (we can hope), few more fps.

Now, those ones which have no minigl versions:

Fricking Shark:

ogles2 1.22at some check point83 fps
ogles2 beta
at some check point111 fps


+ 28 fps !

Prototype :

ogles2 1.22
    -- 
first text scroll531
    
-- menu306
    
-- at start of level1243 max

ogles2 beta

    -- 
first text scroll575
    
-- menu330
    
-- at start of level1319 max


That one have huge gain too!


Barony:

That one have no differences. In some previous beta version of ogles2 it even have some decriasing of fps, but in very latest beta its now the same as for 1.22. Thats not surprise, as game itself is CPU demanding than GPU, and mostly want raw cpu power.

In end of all as you can see it depends where things go much faster, and where not that much faster. In whole , everything done over gl4es/ogles2/warp3dnova is faster than over minigl always, sometime even quite a loot. Even that damn quake3 with his oldschool way of doing things on the same level as minigl (just loose 3-4 fps, while giving as result better quality of game : have no rendering bugs in few places where minigl versions have).


Probabaly from the ogles2.library side, everything its already optimize quite well (as we know Daniels skills by all those games and things he do in terms of optimisation). Surely gl4es itself can be optimized more. Probably warp3dnova can be optimized a bit as well (and shaders issues fixed :) ), but in whole if you take in account that its gl4es -> ogles2 -> warp3dnova -> graphics.library -> kernel, then its quite cool :)

So, thanks to Daniel for ogles2.library works, to Hans for warp3dnova, and to ptitSeb for gl4es !


Edited by kas1e on 2019/2/5 21:01:46
Edited by kas1e on 2019/2/5 21:06:28
Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
@kas1e

That's quite interesting, aniway is there any condition (a software port that can be compiled for both) that doesn't use this GL4ES wrapper at all, so to see how it could be the "real" comparison in term of performance between MiniGL and OpenGL ES ?

Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
@samo79
SDL2 renderer benchmark which we check in SDL2 thread year ago running on all latest stuff show speed up in 2-3 times for ogles2 over opengl everywhere, but fillrects() tests show even 8 times more speed up (minigl one 430, ogles2 one 3700).

Except ReadPixels(), which is on the same level, but as we know its limitation of x5k not having DMA in graphics.library.

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
@Hans
Need some of your help again :) Want to deal with that crash in fricking shark which i describe there:

http://www.amigans.net/modules/xforum ... id=112755#forumpost112755

ptitSeb keep repeating its not gl4es, daniel says that it probabaly also not ogles2, and Hans says that as there is not warp3d to be seen in crashlog, then its not warp3d :)

So then i will try to debug it myself till understanding where is issue.

So there is our crashlog:
http://kas1e.mikendezign.com/aos4/gl4 ... e_2019-01-07_15-40-28.txt

Just to understand more, you says before that "judging from the crash log it's likely that it's trying to use a non-existant vertex attribute array. It's loading data from address 0xFFFFFFFF (i.e., the end of addressable memory).".

So yeah, GPR #8 (r8) contain "FFFFFFFF" and disasembly point out that it crashes on lbzu r6,1(r8), so tried to use end of addressable memory..

But why there is 0xFFFFFFFF that another question then.

Is there anything else can be said from the crashlog which can point out us on something ?

Thanks!


Edited by kas1e on 2019/2/17 6:37:09
Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
@kas1e

Ah, so everybody is convinced that it's somebody else's code...

What code is called before glRasterPos2D which is responsible for:
Quote:
GameEngine:gl4es_blitTexture_gles2.constprop.0()+0x1cc (section 1 @ 0x409DFC)
GameEngine:gl4es_blitTexture()+0x3f0 (section 1 @ 0x40CDF0)
GameEngine:bitmap_flush()+0x2ac (section 1 @ 0x3C2910)


While glRasterPos2d() is the trigger, it looks like some previous render call is setting up rendering incorrectly. I'm guessing that bitmap_flush() is called to execute any pending render operations before the raster state is updated. So, the crash's root cause is probably one of those pending render operations. It'll be something that is drawn via gl4es_blitTexture().

NOTE: It could be the frickingshark code itself that's at fault. Don't let "it works on other platforms" fool you. I've repeated this story a few times, but it's relevant here: one bug that was initially blamed on MiniGL was actually an uninitialized array in the game code. It happened to work on other platforms because other platforms zero newly allocated memory, which just happened to be a good default value.

Hans

http://hdrlab.org.nz/ - Amiga OS 4 projects, programming articles and more.
https://keasigmadelta.com/ - more of my work
Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
@Hans
Thank for another ideas, will check it more today.

Quote:

Don't let "it works on other platforms" fool you. I've repeated this story a few times, but it's relevant here: one bug that was initially blamed on MiniGL was actually an uninitialized array in the game code. It happened to work on other platforms because other platforms zero newly allocated memory, which just happened to be a good default value.


Yeah, funny example was foobillard++ port (plan to release it once ogles2.1 will be out for public): it have in original code 4 real bugs : 2 of them unitialized memory, 1 overflow of heap and 1 just mess from the mess copy of arrays to the wrong destinations (wrongly initialized memory). And so, funny thing is : none of them showups on win32 or linux/pondora build. Everything works like all fine. Seems that both linux and win32 not only deal with unitialized memory internally, but also have guards for more different kind of bugs. No suprise than when we trying to port something to os4, most of time we have some new bugs which others didn't have ..

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Not too shy to talk
Not too shy to talk


See User information
@kas1e
Quote:
...daniel says that it probabaly also not ogles2

Yes, but I also said that IMHO it's most likely gl4es
I have no other reason for my guess but the rather low code quality of gl4es around gl4es_blitTexture_gles2 though, plus the fact that I see no way how ogles2 could produce such a crash without being fed with garbage from outside in the first place. Nova seems to be not guilty here.

As Hans pointed out that garbage from outside may come from Fricking Shark itself though.
In any way, it looks as if ogles2 is being fed with invalid vertex array pointers and / or falsely enabled vertex arrays.

And yes, that "it works on other platforms" is nothing to count on. We had such issues here before where it ultimately turned out to be a gl4es issue despite "it worked on others". Or take a look at T57: the PC version has literally trillions of unitialized variable bugs but the coder didn't notice because "it worked on his system". Of course it blew up on Amigas

Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Site Builder
Site Builder


See User information
So Amiga makes better developers :D

Follow me on
Ko-fi, Twitter, YouTube, Twitch
Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
@Hans,Daniel

We just checking if the vertex setups correctly, by adding to the src/gl/blit.c (you can press on link to see code) that debug-prinfs:

LOAD_GLES2(glGetVertexAttribiv);
for(
int i=0i<hardext.maxvattrib; ++i) {
 
int ok 0;
 
gles_glGetVertexAttribiv(iGL_VERTEX_ATTRIB_ARRAY_ENABLED, &ok);
printf("vertexarray[%d] = %d\n"iok);
}


And so as he expect, only the 2 first vertex array to be enqbled (1) qnd all other to be disabled (0). And that didn't changed at crash as well.


Next, he agree with what you both saying, but the problem is that `gl4es_blitTexture(...)` function is mostly self-contained. This function simply blit a texture to the framebuffer. In that case, it is most probably the text beeing shown with f4 (that's a bitmap, so it is feed to a temporary texture than blitted). The blit function disable all VertexArray except the 2 first (wich you have checked is correct) then draw a simple triangle Fan. I'm fairly confident the 2 Vertex Array are correctly setup.

So yeah, the issue is probably in FrikingShark itself overwriting some memory it shouldn't I guess.


Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Just can't stay away
Just can't stay away


See User information
@kas1e

How the "death sequence fading" is implemented?

Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
@Capehill
It is not only happens when you die, but also when you pass the level. I.e. when everything clears by black and then should showup new things, then it crashes.

So its happens after fadin finished, and then.

As for where it placed in game's code, dunno at moment, will check. Its for sure one of those files:
https://github.com/ptitSeb/friking-shark/tree/master/GameGraphics

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Just popping in
Just popping in


See User information
@kas1e

What happens if in OpenGLRender.cpp you make COpenGLRender::ActivateHeightFog() function do nothing ("return" at start of function)?


Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
@Georg
Same crash

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: GL4ES: another OpenGL over OpenGLES2 emulation - some tech. info and porting progress
Home away from home
Home away from home


See User information
@Hans,Daniel
Another thing we do is print out all the things of those 2 VA which is used by fricking shark, by that debug printfs code:

gles_glVertexAttribPointer(iv->sizev->typev->normalizedv->stridev->pointer);
    
printf("VA %d size=%d, type=%s, norm=%d, stride=%d, pointer=%p\n"iv->sizePrintEnum(v->type), v->normalizedv->stridev->pointer);
            } else {
    
printf("VA %d no change (should be size=%d, type=%s, norm=%d, stride=%d, pointer=%p)\n"iv->sizePrintEnum(v->type), v->normalizedv->stridev->pointer);
        }



Its added there : https://github.com/ptitSeb/gl4es/blob/master/src/gl/fpe.c#L1206

And so, that what we have printed from the game start till moment when crash happens:

http://kas1e.mikendezign.com/aos4/gl4es/games/frikingshark/log.txt

So, what it shows is the both VA seems to be correctly setupped, with sane value for all the fields. So if we take in account that it issue with VA, we then don't know where the 0xFFFFFFFF as a pointer comes from.

To Go further, would be interesting to have similar printf from inside OGLES2, to understand were this bad address comes from.


@Daniel
It is possible for you to build test ogles2.library, which prinfs VA values (size,type,norm,stride,pointer) to serial or something ?

So even if it will be not ogles2, we can at least found from where 0xffffffff come (if it about VA at all..)

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top

  Register To Post
« 1 ... 19 20 21 (22) 23 24 25 ... 42 »

 




Currently Active Users Viewing This Thread: 1 ( 0 members and 1 Anonymous Users )




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project