summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)AuthorFilesLines
2015-09-16tests: explictly link testing tools with math libraryØyvind Kolås2-2/+2
fixes bug #750935
2015-09-16tests: update compositions/reference/shift.pngØyvind Kolås1-0/+0
2015-09-08apply-lens: some improvementsThomas Manni3-0/+0
* work with float instead of uint8 * do not allocate twice the size of the whole input * do not use the whole input extent as cached region * use sampler to fetch projected input pixels * use iterator on the input/output buffers roi
2015-07-03color:exchange: modify delta computation, providing better colors shadingThomas Manni1-0/+0
2015-06-04buffer: Add a test for the new gegl_buffer_copy abyss parameter.Michael Henning2-0/+42
2015-06-04tests: add a bump-map testThomas Manni3-0/+33
2015-06-01dist: avoid distribution bunches of PNGsØyvind Kolås1-2/+2
Both the gallery in docs and the test compositions use PNG images which increase the size of the tarball by, currently, around 35mb.
2015-05-25buffer: Add an abyss argument to gegl_buffer_copy, this changes the API butØyvind Kolås9-9/+11
doesn't add the implementation defaulting to GEGL_ABYSS_NONE all the time (and passing it, in almost all places, some could proably use CLAMP)
2015-05-23actually add polar coordinates testØyvind Kolås2-0/+10
2015-05-23tests: add a polar-coordinates testØyvind Kolås1-5/+6
2015-05-23test-image-compare: adapt to new babl behavior for CIEOyvind Kolas1-3/+3
2015-05-23tests: add math lib in buffer testsTim Lunn1-1/+1
This fixes a DSO Linker error that occurs when built with --as-needed
2015-04-27tests: fix missing string format argumentTim Lunn1-6/+2
This causes a build failure when building with -Werror=format-security https://bugzilla.gnome.org/show_bug.cgi?id=746984
2015-04-26tests: use the gegl.png generated on 64 bitMichael Natterer1-0/+0
This breaks make check for 32 bit builds, but makes Jenkins happy.
2015-04-26gaussian-blur: replace with the new one from workshopØyvind Kolås4-0/+0
2015-04-01gegl_buffer_linear_open should return a gpointer, not a gpointer*Michael Henning2-2/+2
2015-03-03tests/compositions: replace contrast-curve image referenceThomas Manni1-0/+0
2015-03-03tests/compositions: temporarily disable value-propagate failing testThomas Manni1-1/+0
2015-03-03operations: add gegl:edgeThomas Manni3-0/+125
2015-01-29operations: add gegl:value-propagateThomas Manni3-0/+13
2015-01-20tests: Also load operation from source dirJon Nordby1-2/+2
When building out-of-tree (VPATH build), like during distcheck the tests where not finding the .json ops becaue they were not built - and thus not present in the build directory
2015-01-20meta-json: Enable test compositionJon Nordby2-0/+1
2015-01-20meta-json: Lookup operation name+description properlyJon Nordby2-2/+2
No more hardcoding :)
2015-01-20meta-json: Add a trivial testcaseJon Nordby1-0/+14
2015-01-20meta-json: Add initial test caseJon Nordby1-0/+13
2015-01-14operations: add gegl:diffraction-patternsThomas Manni3-0/+18
2015-01-13operations: add gegl:color-enhanceThomas Manni3-0/+12
2015-01-12tests/simple/test-image-compare: update referenceØyvind Kolås1-9/+9
The expected results is now different due to fixes in babls CIE Lab in babl commit 0dba0608bd2cfe69453834c1ec87b7a2be13d2dd
2015-01-12update image-compare tests referenceØyvind Kolås1-0/+0
The expected results is now different due to fixes in babls CIE Lab in babl commit 0dba0608bd2cfe69453834c1ec87b7a2be13d2dd
2015-01-05tests: Add reference test for scale-size-keepaspectJon Nordby3-0/+14
2014-12-28operations: add gegl:lens-flareThomas Manni3-0/+16
2014-12-20tests: Update jpg-load-datauri.xml reference outputMukund Sivaraman1-0/+0
2014-12-20tests: Don't use JPEG files in tests as they may decode differently on ↵Mukund Sivaraman8-5/+5
different platforms
2014-12-17tests: Add composition for loading JPEG from data: URIJon Nordby3-0/+9
2014-12-15operations: add gegl:engraveThomas Manni3-0/+15
2014-12-09fix typoNils Philippsen1-2/+2
2014-12-09tests: skip a python test if a known broken gi version is foundAlexia Death1-0/+9
2014-12-08tests: reference image for gegl that matches the Jenkins cairo versionAlexia Death1-0/+0
2014-12-08tests: edge sobel new reference imageAlexia Death1-0/+0
2014-12-08tests: update 2 reference imagesAlexia Death2-0/+0
2014-12-02operations: add gegl:illusionThomas Manni3-0/+16
2014-11-22Bug 740540 - Port the gimp Solid Noise plug-in as gegl:noise-solidThomas Manni3-0/+24
2014-11-21Bug 740454 - Port the gimp Sinus plug-in as gegl:sinusThomas Manni3-0/+26
2014-11-16operations: add gegl:supernova operation (bug #740204)Thomas Manni3-0/+21
2014-11-12operations: add gegl:video-degradationThomas Manni3-0/+17
2014-11-10operations: add gegl:color-exchangeThomas Manni3-0/+19
2014-11-09tests/compositions: Print exception if VERBOSEJon Nordby1-1/+3
2014-08-10tests/simple: Don't call gegl_color_new until after gegl_initMichael Henning1-2/+4
If you call gegl_color_new before gegl_init, it will now try to call babl before babl was initialized and segfault.
2014-08-08gegl-color: Take gamma-corrected colors when on #rrggbb format and for named ↵Jon Nordby1-0/+0
colors This changes the semantics to be line with the expected for CSS/HTML values. Because the format can only have 256 values per channel, gamma-corrected is also the only thing which gives sufficient perceptual precision. Makes previously added unit tests pass. Warn: changes output of operations using this type of format strings!
2014-08-08tests: Add unit tests for GeglColor parsingJon Nordby1-10/+84
Currently failing as named and RGB hex does not interpret values as gamma-corrected.