Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
109 user(s) are online (63 user(s) are browsing Forums)

Members: 0
Guests: 109

more...

Headlines

 
  Register To Post  

« 1 ... 14 15 16 (17) 18 19 20 ... 24 »
Re: Shaderjoy 1.16
Just can't stay away
Just can't stay away


See User information
@kas1e

I'm expecting the application to beep and exit normally regardless of the scrollbar position. For me, the test application is blocked when the scrollbar is up.

Yes, I saw Trevor's presentation, pretty cool :) Shaderjoy was also featured on some Hans' Youtube video earlier.

EDIT: added some video links in the first post.

Go to top
Re: Shaderjoy 1.16
Home away from home
Home away from home


See User information
@Capehill
Quote:

I'm expecting the application to beep and exit normally regardless of the scrollbar position. For me, the test application is blocked when the scrollbar is up.


Yeah, same for me, until it at the top it blocked. Then once I scroll it down its exit with a beep (with no corruption). Should we discuss it with TonyW maybe?

In our case, it's anyway a bit different... Maybe we need to set there some interrupt handler like if console output close we then "interrupt/break" any further output or something, so control to ShaderJoy is back?

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Shaderjoy 1.16
Just can't stay away
Just can't stay away


See User information
@kas1e

Yeah, I could ask Tony about this.

So you don't have that last line corruption / overwite issue? Have you modified your console settings somehow, line count or such?

I wonder about that output window closing part. Theoretically output window should re-open when new prints appear.

Go to top
Re: Shaderjoy 1.16
Home away from home
Home away from home


See User information
@Capehill

Btw, shouldn't be uniform "iChannelTime" be declared in ShaderJoy as well? I find out those shaders which failed with an error about "iChannelTime" undeclared, and for such shaders, I had to add manually at top "uniform vec3 iChannelTime;"

There is a list of those shaders for tests, in case you think such a uniform should be added to ShaderJoy:

Quote:

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Shaderjoy 1.16
Just can't stay away
Just can't stay away


See User information
@kas1e

iChannelTime is waiting for audio support. Shaders that try to sample audio would work wrongly anyway.

Anyway, that's a handy list for future testing, thanks!

Go to top
Re: Shaderjoy 1.16
Just can't stay away
Just can't stay away


See User information
@kas1e

Quote:

Checked that multipass shader: https://www.shadertoy.com/view/Xd3GDl

And while all compiles and seems works (it change the pictures randomly from 3 ichannels of bufferA and a bit fuzz/blure them): there still some error, on some switch, instead of showing actual texture image on the left side, it shows grey screen. Just want to be sure it is not a ShaderJoy issue about handling multipass shaders, but Nova one so can report.


I'm now able to test this and it works for me. If you can figure out how to break I can check it again.

Go to top
Re: Shaderjoy 1.16
Home away from home
Home away from home


See User information
@Capehill
You mean all 3 stages works ? For me only first 2 works as expected, and then when 3rd stage starts, it show only background, but no fuzz/blur of texture. I.e there should be no of "only background" at any pass

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Shaderjoy 1.16
Just can't stay away
Just can't stay away


See User information
@kas1e

Yes. Can you switch to Detail debug level and then just quit the Shaderjoy and paste the final logs?

Go to top
Re: Shaderjoy 1.16
Home away from home
Home away from home


See User information
@Capehil
Will check once will back home, but that about 7-10 days :(

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Shaderjoy 1.17
Just can't stay away
Just can't stay away


See User information
1.17 is available:

- Add FLOATTEXTURE tooltype. Note: there is an open driver issue #610.
- Fix mouse Y position (info bar height wasn't taken into account).
- Change iFrame uniform type from float to int.
- Load dropped shader file into Image slot when there is no editor view (tabs).
- Add sobel.frag.
- Refactor logging.

Go to top
Re: Shaderjoy 1.17
Home away from home
Home away from home


See User information
@Capehill

Btw, while away from amiga HW at the moment, still download the 1.17 archive and find out in directory ShaderToy a file with name "new_common.txt", with such content:

Quote:

vec4 someFunction( vec4 a, float b )
{
return a + b;
}



That just some test-leftovers?:) Or used for something now?

Also if doesn't mind, can clean a bit about logging refactoring? Maybe it's something about an issue which we discuss lately related to that closing-console/can't close ShaderJoy?

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Shaderjoy 1.17
Just can't stay away
Just can't stay away


See User information
@kas1e

new_common.txt should be used when one wants to add new Common tab. It could be internal string too but this way it's easier to customize.

Oh, and log refactoring was only about going through all prints, and start using new logging levels (earlier it was only 2 levels). I will need to get back to that console issue some day.

Go to top
Re: Shaderjoy 1.17
Home away from home
Home away from home


See User information
@Capehill
Quote:

new_common.txt should be used when one wants to add a new Common tab. It could be an internal string too but this way it's easier to customize.


But common part always different in all shaders (at least with shadertoy), some of them just had a bunch of defines, without functions, etc.

Or you mean that just for an easer way to made own shader than using shadertoy ones ?:) But then it placed in "ShaderToy" directory, meaning it for "ShaderToy"?

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Shaderjoy 1.17
Home away from home
Home away from home


See User information
@Capehill

What version do you set inside of shaderjoy for all the shaders? 120 or 130? Or none and let ogles2 use the default one?

Why I ask, because there is bunch of shaders which fail because of those errors:

'min' no matching overloaded function found:
'max' no matching overloaded function found:
'rot' no matching overloaded function found:
'round' no matching overloaded function found:

That all happens because of lower versioning set in shaderjoy internally (or not set ?), and those ones are from "#version 150".

So the question is what kind of version you have set now, and can you raise it to #version 150 as default (because why it should be lower anyway?)

There is a list of shaders you may want to try to test with the current version in shaderjoy, and if you will set internally #verison 150 :

'rot' no matching overloaded function found:

https://www.shadertoy.com/view/3dVyD3


'max' no matching overloaded function found:


https://www.shadertoy.com/view/llj3Wy
https://www.shadertoy.com/view/4tdSDX


'min' no matching overloaded function found:

https://www.shadertoy.com/view/tsdfW8
https://www.shadertoy.com/view/WdKcWd
https://www.shadertoy.com/view/WsVcRd
https://www.shadertoy.com/view/wlj3zV
https://www.shadertoy.com/view/tlSSDV
https://www.shadertoy.com/view/WlXyzS
https://www.shadertoy.com/view/wtsyzs

Thanks for worry :)

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Shaderjoy 1.17
Just can't stay away
Just can't stay away


See User information
@kas1e

Shaderjoy is current using "#version 310 es". Are you running version 1.17 by the way?

https://www.shadertoy.com/view/llj3Wy has:

"max(0,-iFrame)"

and iFrame was changed from float to int in 1.17, so it _should_ work now...I will try these shaders on my side.


Go to top
Re: Shaderjoy 1.17
Home away from home
Home away from home


See User information
@Capehill
Omg! They all seem to start to works now! I didn't test all failed I found (have in my list about 50 of them with such errors), but so far 10 random ones works! (taking aside those ones which hog CPU at 100%:) )

Some auto-fix for non reported bug, thanks a bunch !:)

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Shaderjoy 1.17
Home away from home
Home away from home


See User information
@Capehill
Rechecked all the shaders which give me errors about "no matching overloaded function found", and for the "min", "max" and "round" they are gone. Through found one shader, which still brings error about "rot":

https://www.shadertoy.com/view/3dVyD3

But that one IMHO not worth worry, as it just one single shader from thousands tested.


Another also not that big of worry issue, is I found that for some heavy shaders I have such a warning:


Warning : 40:1: 'preprocessor evaluation': undefined macro in expression not allowed in es profile HW_PERFOMANCE:

That one harmless, things works after it show ups, but still maybe worth to look at. There is test ones with this warning:

https://www.shadertoy.com/view/tt2XzG
https://www.shadertoy.com/view/4sBGD1

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Shaderjoy 1.17
Just can't stay away
Just can't stay away


See User information
@kas1e

Pumpkin Rave works, audio excluded. You need to load Common part first because rot() is defined there and used by both Buffer A and Image.

Regarding preprocessor warnings, I suppose it might be possible to let user define #version.

EDIT: "Analyze" button of Shadertoy indicates that the web version is using "#version 300 es".

Go to top
Re: Shaderjoy 1.17
Home away from home
Home away from home


See User information
@Capehill

About rot: right, I just tried to include the "common" part to the image, and fail to see that bufferA use it as well, damn.

Btw, check this shader: https://www.shadertoy.com/view/lldXRB

On our part, we have too many "star dots", while on win32 realization there just very-very few of them. I think it's again related to "smoothstep" maybe ? That part:

// stars    
    
sky += 0.8*smoothstep0.90,1.0,textureiChannel32.5*p+time*0.03 ).x);
    
sky += 0.4*smoothstep0.50,1.0,textureiChannel32.5*p+time*0.1 ).y);
    
sky += 0.3*pow(abs(0.5-max(0.0,p.y)),5.0);

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Shaderjoy 1.17
Not too shy to talk
Not too shy to talk


See User information
@kas1e
Quote:
Warning : 40:1: 'preprocessor evaluation': undefined macro in expression not allowed in es profile HW_PERFOMANCE:
That one harmless, things works after it show ups, but still maybe worth to look at. There is test ones with this warning


This is no bug on our side, neither in ogles2.lib nor in ShaderJoy. The picky GLSL preprocessor simply warns you that the #if condition cannot really be evaluated as the author probably intended because the preprocessor value to be tested doesn't exist in the first place.
Note that those two shaders in question were made by the same guy This define HW_PERFORMANCE is something he invented himself for his shaders. Unfortunately he forgot to place something like

#ifndef HW_PERFORMANCE
#define HW_PERFORMANCE 0
#endif

on top of his shaders so that his toggle is actually defined if you as the user didn't add an explicit #define HW_PERFORMANCE X on top by yourself.
So, no action to be taken on our side.

Go to top

  Register To Post
« 1 ... 14 15 16 (17) 18 19 20 ... 24 »

 




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




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project