Logo by Pauldelbrot - Contribute your own Logo!

END OF AN ERA, FRACTALFORUMS.COM IS CONTINUED ON FRACTALFORUMS.ORG

it was a great time but no longer maintainable by c.Kleinhuis contact him for any data retrieval,
thanks and see you perhaps in 10 years again

this forum will stay online for reference
News: Visit the official fractalforums.com Youtube Channel
 
*
Welcome, Guest. Please login or register. April 25, 2024, 07:24:08 PM


Login with username, password and session length


The All New FractalForums is now in Public Beta Testing! Visit FractalForums.org and check it out!


Pages: [1] 2   Go Down
  Print  
Share this topic on DiggShare this topic on FacebookShare this topic on GoogleShare this topic on RedditShare this topic on StumbleUponShare this topic on Twitter
Author Topic: Fractal Lab - WebGL fractal renderer  (Read 14500 times)
0 Members and 1 Guest are viewing this topic.
subblue
Conqueror
*******
Posts: 116



WWW
« on: March 06, 2011, 12:14:33 AM »

I've finally launched the beta version of my Fractal Lab over at fractal.io

You need a WebGL enabled browser (Google Chrome is best, or Firefox 4 beta).
See the video below for a little intro smiley

<a href="http://vimeo.com/moogaloop.swf?clip_id=20687741&amp;amp;server=vimeo.com&amp;amp;show_title=0&amp;amp;show_byline=0&amp;amp;show_portrait=0&amp;amp;color=00adef&amp;amp;fullscreen=1&amp;amp;autoplay=0&amp;amp;loop=0" target="_blank">http://vimeo.com/moogaloop.swf?clip_id=20687741&amp;amp;server=vimeo.com&amp;amp;show_title=0&amp;amp;show_byline=0&amp;amp;show_portrait=0&amp;amp;color=00adef&amp;amp;fullscreen=1&amp;amp;autoplay=0&amp;amp;loop=0</a>

Note: unfortunately for Windows users the browsers have to convert the OpenGL calls into the D3D API, which means it might take 30-60 secs for the fractal shader to compile. However, once it has compiled you can explore and tweak the parameters at interactive rates.

Logged

www.subblue.com - a blog exploring mathematical and generative graphics
cbuchner1
Fractal Phenom
******
Posts: 443


« Reply #1 on: March 06, 2011, 12:49:01 AM »


Worked fine on my nVidia 9600M GT chip on Windows 7 Vista, in Firefox Beta 12.

The Mandelbulb did not really show a lot of detail in the default view and I'd have preferred to see it from the side and not from the top. But hey, it's an interactive Mandelbulb!

Logged
marius
Fractal Lover
**
Posts: 206


« Reply #2 on: March 06, 2011, 02:17:57 AM »

I've finally launched the beta version of my Fractal Lab over at fractal.io
...
Note: unfortunately for Windows users the browsers have to convert the OpenGL calls into the D3D API, which means it might take 30-60 secs for the fractal shader to compile. However, once it has compiled you can explore and tweak the parameters at interactive rates.

Excellent! You should submit your site to http://www.chromeexperiments.com/submit/

Yeah, that D3D conversion step is painfully slow. Lots of 'unresponsive' dialog boxes on win7-64 on i7 with amd5850, not cool for such a decent machine.

I notice we're having a lot of glsl shader viewers out there (boxplorer, fragmentarium, mandelflyer, this, ...). Most of the shaders are very similar in interface & code, we should come up a standard so we can share the fragments more easily.. You know, set of uniforms, coloring params, value range annotation, etc.
Logged
bib
Global Moderator
Fractal Senior
******
Posts: 2070


At the borders...


100008697663777 @bib993
WWW
« Reply #3 on: March 06, 2011, 09:46:25 AM »

Will give it a more indepth try, but first experiments are fun! Thanks for this great job smiley
(Recompile time is long for a "real-time" app...)
Logged

Between order and disorder reigns a delicious moment. (Paul Valéry)
subblue
Conqueror
*******
Posts: 116



WWW
« Reply #4 on: March 06, 2011, 10:20:23 AM »

Excellent! You should submit your site to http://www.chromeexperiments.com/submit/

Yeah, that D3D conversion step is painfully slow. Lots of 'unresponsive' dialog boxes on win7-64 on i7 with amd5850, not cool for such a decent machine.

I notice we're having a lot of glsl shader viewers out there (boxplorer, fragmentarium, mandelflyer, this, ...). Most of the shaders are very similar in interface & code, we should come up a standard so we can share the fragments more easily.. You know, set of uniforms, coloring params, value range annotation, etc.

Yeah, I've submitted it to the Chrome Experiments site smiley

The D3D conversion is annoying, but until the browsers enable native OpenGL support then there's nothing we can do. At least once it has compiled the interaction is fast.

As for common GLSL shaders, it would be difficult to have a standard as all the wrapper apps are so different.

Logged

www.subblue.com - a blog exploring mathematical and generative graphics
David Makin
Global Moderator
Fractal Senior
******
Posts: 2286



Makin' Magic Fractals
WWW
« Reply #5 on: March 06, 2011, 11:08:45 AM »

Excellent! You should submit your site to http://www.chromeexperiments.com/submit/

Yeah, that D3D conversion step is painfully slow. Lots of 'unresponsive' dialog boxes on win7-64 on i7 with amd5850, not cool for such a decent machine.

I notice we're having a lot of glsl shader viewers out there (boxplorer, fragmentarium, mandelflyer, this, ...). Most of the shaders are very similar in interface & code, we should come up a standard so we can share the fragments more easily.. You know, set of uniforms, coloring params, value range annotation, etc.

Yeah, I've submitted it to the Chrome Experiments site smiley

The D3D conversion is annoying, but until the browsers enable native OpenGL support then there's nothing we can do. At least once it has compiled the interaction is fast.

As for common GLSL shaders, it would be difficult to have a standard as all the wrapper apps are so different.

The best way would to be agree on our own fractal language for source, this to be parsed/compiled from "fractal code" into either pure shader code or full GLSL, or even just plain CPU/FPU code.
As to uniforms, IMHO the only items that should be uniforms are location information and particular items such as light strengths, all actual fractal values should be "#define"s *unless* the program concerned is specifically designed for realtime morphing/adjustment of the fractals rather than just the view/lights etc.
Using "#define"s and recompiling means all such user parameters can be used in conditional compilation without runtime speed taking a big hit as it would if they were uniforms and the conditionals were runtime conditionals.
The solution to that is actually quite simple - give the user control over what items/parameters are #defines (so requiring a re-compile if changed) and which are uniforms (so faster, potemtially "live" adjusrtments are possible).
That combined with using a fixed defined fractal source code language would I think give the most flexibility combined with the most compatibility.
Personally I favour a fractal language that is essentially macro based, with the possibility for the macros to be used as full functions, I don't really think a fully class-based approach (as in UF5) is necessary and forces too many overheads in any case and the macro approach gives more flexibility than the original UF (4-) language.
Logged

The meaning and purpose of life is to give life purpose and meaning.

http://www.fractalgallery.co.uk/
"Makin' Magic Music" on Jango
David Makin
Global Moderator
Fractal Senior
******
Posts: 2286



Makin' Magic Fractals
WWW
« Reply #6 on: March 06, 2011, 11:13:10 AM »

I'd just like to add that those suffering the re-compile time issues under Windows should know that (for example) shader 2 code compiles even on the iPad and iPhone in under 2 seconds.
Logged

The meaning and purpose of life is to give life purpose and meaning.

http://www.fractalgallery.co.uk/
"Makin' Magic Music" on Jango
Syntopia
Fractal Molossus
**
Posts: 681



syntopiadk
WWW
« Reply #7 on: March 06, 2011, 03:37:18 PM »

Congratulations with Fractal Lab, Tom! This is a very spectacular demonstration of how web apps keep pushing the limit.

As for the WebGL recompile time on Windows: In Firefox 4, it should be possible to switch to native GLSL compilation by going to 'about:config' and changing 'webgl.prefer-native-gl' to 'true'. It did not work on my computer, though, but other people have claimed that this works. You can check the current WebGL compiler under 'about:support' (look for WebGL Rendering).
Logged
tomot
Iterator
*
Posts: 179


WWW
« Reply #8 on: March 06, 2011, 04:06:53 PM »

Congratulations with Fractal Lab, Tom! This is a very spectacular demonstration of how web apps keep pushing the limit.

I agree totally with that statement. It works well with FireFox 4 beta. I would like to see better resolution in the future, options for saving to .jpg at highter bit
content, but I'm sure your thinking about that. I'm impressed by a clean, uncluttered, simple, easy to use layout. (ran out of adjectives)  smiley WOW!
Logged
David Makin
Global Moderator
Fractal Senior
******
Posts: 2286



Makin' Magic Fractals
WWW
« Reply #9 on: March 06, 2011, 10:42:21 PM »


The D3D conversion is annoying, but until the browsers enable native OpenGL support then there's nothing we can do. At least once it has compiled the interaction is fast.


cheesy Maybe if you have a decent video card, but the render time on a 64MB GMA950 is as slow as the compile time !

BTW the library 2D Julia doesn't seem to work - I just get concentric rings ?

I assume you can't have separate threads in WebGL ? (This would explain why the WebGL interface is unresponsive when compiling)
Logged

The meaning and purpose of life is to give life purpose and meaning.

http://www.fractalgallery.co.uk/
"Makin' Magic Music" on Jango
tomot
Iterator
*
Posts: 179


WWW
« Reply #10 on: March 06, 2011, 11:05:43 PM »

Oops! The 3d MengerSponge looks like its mirrored, about a center, without the same center location for both mirrors.
Logged
SaMMy
Alien
***
Posts: 21


« Reply #11 on: March 07, 2011, 04:52:25 AM »

@ tomot:

I LOVE these Effect, looks great. If i only know what to do in M3D to get the same Mengersponge's ? (If you know an answer, please can you post it here? - http://www.fractalforums.com/mandelbulb-3d/special-'offset'-and-'rotate'-options-from-fractallab-possible-in-m3d-formula/

Many thanks,

SaMMy
--------
HEITER WEITER
Logged
Syntopia
Fractal Molossus
**
Posts: 681



syntopiadk
WWW
« Reply #12 on: March 07, 2011, 07:47:37 PM »

I managed to get native WebGL acceleration in Firefox 4 Beta 12 on Windows, by going to 'about:config' and setting:
Code:
webgl.prefer-native-gl=true
webgl.force-enabled=true

The second step is necessary if your GPU drivers are older than June 2010 (because Firefox blacklists older drivers).
Now Fractal Lab shaders compile in less than 1 second on my laptop :-)

Logged
subblue
Conqueror
*******
Posts: 116



WWW
« Reply #13 on: March 07, 2011, 07:52:58 PM »

I managed to get native WebGL acceleration in Firefox 4 Beta 12 on Windows, by going to 'about:config' and setting:
Code:
webgl.prefer-native-gl=true
webgl.force-enabled=true
The second step is necessary if your GPU drivers are older than June 2010 (because Firefox blacklists older drivers).
Now Fractal Lab shaders compile in less than 1 second on my laptop :-)

Good tip!
Logged

www.subblue.com - a blog exploring mathematical and generative graphics
cbuchner1
Fractal Phenom
******
Posts: 443


« Reply #14 on: March 07, 2011, 08:44:20 PM »

Congratulations, Fractal Lab has been boingboinged. Now let's wait for being slashdotted.
Logged
Pages: [1] 2   Go Down
  Print  
 
Jump to:  


Powered by MySQL Powered by PHP Powered by SMF 1.1.21 | SMF © 2015, Simple Machines

Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM
Page created in 0.322 seconds with 27 queries. (Pretty URLs adds 0.028s, 2q)