Matrix3D: implement quaternion effect
progress with Around the World
Allow more than the default number of concurrent VERTEX and FRAGMENT effects in Effects3D.
New vertex effect 'PINCH'
Make the effect Center be always 3D.
Unify Effects3D and Matrix3D (still incomplete!)
Minor
Encode more info in the EfectNames enum.
Compute Race correctly
Around the World: setRace
Around the World: moving the selection rectangle
Minor stuff
Progress with AroundTheWorld
Progress with "Around The World"
Make the 'face' bitmap's background transparent
New app: Around The World (beginnings)
Effects3D: improvements
Effects3D: can remove arbitrary effect
add 'face' back
Progress with Effects3D
Effects3D: beginnings of support for removing arbitrary effect
New Face bitmap with transparent background.
Merge remote-tracking branch 'origin/master'
Icon
Slight improvement to Effects3D
Progress with WindManager.
Dynamics: Introduce 2 Modes of operation:
- 'random access' mode, where we are able to call a single Dynamic from multiple thread simultaneously.- 'sequential' mode, which only permits sequential interpolation from one client.
The second mode has an advantage when one needs to change mDuration: it keeps on interpolating smoothly. In the first mode, this is not possible.
Rename Effects2D to EffectQueue
Minor details
Solve the issue of moving SeekBars
Progress with Wind
Progress with 'Wind'
Beginnings of the 'Wind' app.
Tidy up 'Save'
Tidy up 'Quaternion'
Tidy up 'PlainMoanLisa'
Tidy up 'Olympic'
Tidy up 'Moving effects'
Tidy up 'Matrix3D'
Tidy up 'Girl'
Tidy up 'FOV'
Tidy up 'Flag'
Tidy up 'FBO'
Tidy up the 'Effects3D'
Tidy up 'Different Effects' app
TIdy up the 'DifferentBitmaps app'
Remove 'statics' from the Deform app
Tidy up 'Cubes' app
Remove unneeded 'statics' from the 'Check' app
remote unneeded 'static' variables and methods from the 'Dynamic' app
Bugfix
Flag app finished
Progress with the 'Flag' test app.
Next fixes for issues with 'jumping' path when noise is on. (and a whole lot of commented out debugging)
Improvements to the Dynamic app.
1. Attempt to deal with unstable Orthonormal Base in Dynamic class (so far unsuccessful)2. Improvements to the 'Dynamic' (and by necessity, 'MovingEffects') applications (to be able to debug the previous)
1. Workaround for th issue that my shitty Nexus 4 crashes while compiling the vertext shader (actually the wave function)2. Improvements to the Dynamics app
minor
Improve the Dynamics app (multi-dimensional noise)
minor stuff
Fix 4D and 5D noise, make noise N dimensional.
Completely redesign Noise in the Dynamics and move all the complexity to the parent class.
something does not work with it now :)
Move most of the NOISE complications from DynamicND classes to the parent Dynamic class.
The Flag is waving!
New constructor to DistortedCubes - easily create a hole-less Cuboid.
Beginnings of a new example app - a waving flag.
No actual waving yet!
Make the WAVE effect 5D (extra parameter 'offset')
swap the 2nd and the 3rd parameters in the WAVE effect and improve comments for the WAVE user API.
Correct one more issue with computation of WAVE.
Shades of the WAVE effect (almost!) working.
Fix the 'PlainMonaLisa' to be able to run in the Emulator as well (before ELG Context creation would fail)
Preparation to make the WAVE effect fully 3D
Beginnings of the WAVE effect.
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) )
Fixes for fragment effects in Effects3D.
Slight improvement for Effects3D
Combine Fragment3D and Vertex3D apps into one.
Remove the MACROBLOCK Effect altogether.
Fix the 'Fragment3D' app
Fix the 'FBO' app
Fix the 'Effects2D' app
Fix the 'Different Effects' app
Fix the 'Moving Effects' app
Fix the 'Macroblock' app.
Finally fix the 'when rendering though an FBO, the other side of triangles is visible'
Fix the 1x1 case! Before it used to be impossible to create a DistortedBitmap just with 2 triangles!
Minor stuff - make the Bitmaps and the Cubes agree on the size of the grid, mostly.
Vertex3D: make the Activity independent of Effects
Vertex3D: app finished!
Vertex3D: fix region size.
Vertex3D: Add the new 'Grid' bitmap option!
Vertex3D: Correct setting regions (correction!)
Vertex3D: Correct setting regions.
Add the missing 'Region' resource.
beginnings of support for drawing the Region in Vertex3D app.
re-add center to Vertex3D
Re-write Vertex3D to provide similar functionality to Fragment3D (displaying the center and region bitmaps still missing)