doc: Fixup EDC documentation about filters & examples

This commit is contained in:
Jean-Philippe Andre 2015-06-29 19:52:56 +09:00
parent 04d19b80c7
commit c31b75d20e
4 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
blend ({ color = 0x3399FF })
blend ({ color = '#3399FF' })

View File

@ -1,2 +1,2 @@
blur ({ 10, color = 'black', oy = 5, ox = 5 })
blend ({ color = 0x3399FF })
blend ({ color = '#3399FF' })

View File

@ -1,3 +1,3 @@
a = buffer ('alpha')
blur ({ 5, dst = a })
bump ({ map = a, compensate = true, color = 0x3399FF, specular = 10.0 })
bump ({ map = a, compensate = true, color = '#3399FF', specular = 10.0 })

View File

@ -1,4 +1,4 @@
fat = buffer ('alpha')
grow ({ 8, dst = fat })
blend ({ src = fat, color = 'black' })
blend ({ color = 0x3399FF })
blend ({ color = '#3399FF' })