Project

General

Profile

Revision:

Revisions

# Date Author Comment
02ef26bc 08/30/2016 04:29 PM Leszek Koltunski

Preparation to make the WAVE effect fully 3D

6ddda212 08/29/2016 09:34 PM Leszek Koltunski

Adjustments for EffectQueueVertex.postprocess()

9b82becd 08/29/2016 06:32 PM Leszek Koltunski

Improvements for WAVE

4fde55a0 08/29/2016 04:51 PM Leszek Koltunski

Beginnings of the WAVE effect.

20af7b69 08/24/2016 09:31 PM Leszek Koltunski

Correct an important bug in the vertex shader.

b = 1/a if a!=0, 1 otherwise was incorrectly computed as b = 1.0 / (a+1.0-sign(a)). This, when 0<a<2^-24, suffers from 'round-off error': then a+1.0 = 1.0 (sic!) thus b = 1/0 !.

Correct way: b = 1.0 / ( a - (sign(a)-1.0) )

e4878781 08/22/2016 11:15 AM Leszek Koltunski

Fixes for fragment effects in Effects3D.

77fcb24d 08/11/2016 10:41 PM Leszek Koltunski

Fix for Bug #17: Regions of Fragment Effects migrate.

Fix is: don't send vertex position and the Fragment Effect region to the fragment shader already multiplied by the ModelView matrix (that introduces the imprecise interpolation because of the projection effect) but simply send both of them in local coords.

42e08626 08/09/2016 02:22 PM Leszek Koltunski

Remove the MACROBLOCK Effect altogether.

985ea9c5 08/09/2016 12:11 PM Leszek Koltunski

Finally fix the 'when rendering though an FBO, the other side of triangles is visible'

79f172ab 08/07/2016 10:50 PM Leszek Koltunski

Fix the 1x1 case! Before it used to be impossible to create a DistortedBitmap just with 2 triangles!

c5b1451b 08/07/2016 09:32 PM Leszek Koltunski

Remove the 'invert' option from DistortedProjection - this was making the DistortedNode-based apps not show the Objects, because the winding of triangles was wrong.
Now however the DistortedNode based stuff is inverted top-down :)

29dd01c6 08/02/2016 11:48 PM Leszek Koltunski

Further simplify and speed up the DistortedCubes target.

e5d9b235 08/02/2016 11:42 PM Leszek Koltunski

Further simplify and speed up the DistortedCubes target.

15873844 08/02/2016 11:21 PM Leszek Koltunski

Simplify and spped up the DistortedCubes target.

adb2661c 08/02/2016 11:09 PM Leszek Koltunski

Correctly tesselate the DistortedBitmap target!

84ee2a6a 07/31/2016 02:13 PM Leszek Koltunski

Advanced tesselation of DistortedCubes should be done! This fixes Bug #22

ce7f3833 07/31/2016 01:25 AM Leszek Koltunski

beginnings of support for advanced tesselation in DistortedCubes target (still doesn't quite work)

2e96ee72 07/28/2016 12:20 AM Leszek Koltunski

minor formatting stuff

5bf698ee 07/26/2016 11:24 PM Leszek Koltunski

Tesselate DistortedBitmaps better - now all the triangles long edges point at the center of the bitmap, which makes z-distortions look much better!

a05bb000 07/26/2016 07:01 PM Leszek Koltunski

Merge remote-tracking branch 'origin/master'

0ce6fcef 07/26/2016 07:01 PM Leszek Koltunski

Cull back faces of triangles.

d44ac567 07/25/2016 10:27 PM Leszek Koltunski

Minor stuff - make the Bitmaps and the Cubes agree on the size of the grid, mostly.

ff8ad0a7 07/20/2016 11:11 PM Leszek Koltunski

Fix for Bug #16: When rotated at an angle, surfaces get increasingly transparent.

This also fixes the saturation, chroma, alpha + contrast effects, while completely breaking macroblocks :)

beb70e07 07/17/2016 09:43 PM Leszek Koltunski

Fix for Bug #21: implement z-shear.

30925500 07/17/2016 09:27 PM Leszek Koltunski

Fix for Bug #18: DISTORT effect: disappearing triangles

(976-1000/1065) Per page: 25, 50, 100

Also available in: Atom