This website works better with JavaScript.
Home
Explore
Help
Sign In
brkho
/
mesa
Watch
1
Star
0
Fork
0
Code
Releases
562
Wiki
Activity
Browse Source
progs/glsl: Fix mandelbrot GLSL compilation error on Mac OS.
tags/mesa_7_7_rc1
Vinson Lee
16 years ago
parent
70dca0c273
commit
04442841fb
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
1
1
progs/glsl/CH18-mandel.frag
+ 1
- 1
progs/glsl/CH18-mandel.frag
View File
@@ -31,7 +31,7 @@ void main()
float iter;
// for (iter = 0.0; iter < MaxIterations && r2 < 4.0; ++iter)
for (iter = 0.0; iter < 12 && r2 < 4.0; ++iter)
for (iter = 0.0; iter < 12
.0
&& r2 < 4.0; ++iter)
{
float tempreal = real;
Write
Preview
Loading…
Cancel
Save