]> git.sesse.net Git - movit/shortlog
movit
2013-12-29 Steinar H.... Generate the FBO anew every render.
2013-12-29 Steinar H.... Fix a bug where DeconvolutionSharpenEffect would forget...
2013-12-24 Steinar H.... Install effect_util.h; it is useful for people implemen...
2013-12-24 Steinar H.... Spelling fix.
2013-12-24 Steinar H.... Assert that the EffectChain is not finalized when someo...
2013-12-22 Steinar H.... Fix another harmless Valgrind hit.
2013-12-22 Steinar H.... Properly check framebuffer status when generating FBOs.
2013-12-22 Steinar H.... Fix an issue with invalid texture number usage in measu...
2013-12-16 Steinar H.... A small comment fix in ColorspaceConversionEffect.
2013-12-14 Steinar H.... Properly link in multiply_effect.
2013-11-06 Steinar H.... Promote MultiplyEffect to a real effect.
2013-10-09 Steinar H.... Fix a bug where PaddingEffect could create assertion...
2013-09-28 Steinar H.... Clip below-zero (out-of-gamut) colors in LiftGammaGainE...
2013-02-06 Steinar H.... Make building the demo app optional if SDL_image and...
2013-02-05 Steinar H.... Add a pkg-config variable “shaderdir” to locate the...
2013-02-05 Steinar H.... Install defs.h on make install, since it is needed...
2013-02-03 Steinar H.... Put the resample alpha handling on the right effect.
2013-02-03 Steinar H.... Indentation fix in Makefile.in.
2013-02-03 Steinar H.... Do not call autoheader, since we do not use config.h.
2013-02-03 Steinar H.... Use autoconf defaults for CXX and CXXFLAGS.
2013-02-03 Steinar H.... Rename RGBATriplet to RGBATuple, to avoid silliness.
2013-02-03 Steinar H.... Make util.h private to the effects; instead, defs.h...
2013-02-03 Steinar H.... Prefix include guards with _MOVIT to avoid clashes...
2013-02-03 Steinar H.... Small cleanup in movit.pc.in.
2013-02-03 Steinar H.... Add a distclean target.
2013-02-03 Steinar H.... Update README for the new output alpha constants.
2013-02-03 Steinar H.... Fix cleaning of .dot and .frag files.
2013-02-03 Steinar H.... Add a pkg-config file.
2013-02-03 Steinar H.... Makefile should now be in .gitignore.
2013-02-03 Steinar H.... Remove stray file movit_pch.h, which was never meant...
2013-02-03 Steinar H.... Switch to autoconf to find libraries.
2013-02-03 Steinar H.... Remove obsolete files header.vert and footer.vert.
2013-02-02 Steinar H.... Add some missing tests to .gitignore.
2013-02-02 Steinar H.... Stop linking unit tests et al against SDL_image and...
2013-02-02 Steinar H.... Remove an unused function. Found by Clang.
2013-02-02 Steinar H.... Split out some private utilities into effect_util.cpp...
2013-02-02 Steinar H.... Run include-what-you-use over all of movit. Some hand...
2013-02-02 Steinar H.... Fix alpha handling for blur; it needs to be on the...
2013-02-02 Steinar H.... Add a new alpha handling method, INPUT_PREMULTIPLIED_AL...
2013-02-02 Steinar H.... Rename the OutputAlphaFormat enums; they had gotten...
2013-02-01 Steinar H.... Give the alpha enums somewhat better/more consistent...
2013-02-01 Steinar H.... In resizing effects, add the notion of a “virtual outpu...
2013-02-01 Steinar H.... Give SizeStoringEffect an effect_type_id(), for easier...
2013-01-29 Steinar H.... If all inputs to an effect have the same input size...
2013-01-24 Steinar H.... Fix a Clang warning.
2013-01-23 Steinar H.... Fix a bug where intermediate phase outputs could get...
2013-01-22 Steinar H.... Merge remote-tracking branch 'origin/master'
2013-01-21 Steinar H.... Allow for more than ten bits in subpixel precision...
2013-01-21 Steinar H.... DeconvolutionSharpenEffect needs texture bounce.
2013-01-21 Steinar H.... Fix another stack overflow in EffectChainTest.
2013-01-21 Steinar H.... Loosen up a boundary in DitherEffectTest by 10%.
2013-01-21 Steinar H.... Fix a narrowing conversion within {} in PaddingEffect...
2013-01-21 Steinar H.... Fix a stack overflow in EffectChainTest.
2013-01-21 Steinar H.... In OverlayEffectTest, handle that RGB on zero alpha...
2013-01-21 Steinar H.... Add sdl-config --cflags and --libs when compiling.
2013-01-21 Steinar H.... Check return value from SDL_Init().
2013-01-21 Steinar H.... Use NULL instead of png_voidp_NULL.
2013-01-21 Steinar H.... Don't override GTEST_DIR if it already is set.
2013-01-21 Steinar H.... Link against -lpng, since we can now write screenshots...
2013-01-20 Steinar H.... Ask Google Test not to use exceptions.
2013-01-20 Steinar H.... Make the internal effects private to EffectChain.
2013-01-20 Steinar H.... Fix a typo in the README.
2013-01-20 Steinar H.... Add some parameter asserts in DitherEffect, too.
2013-01-20 Steinar H.... Remove two unused members from EffectChain.
2013-01-20 Steinar H.... Another case of NULL initialization to keep Coverity...
2013-01-20 Steinar H.... Add some asserts to SingleResamplePassEffect, to make...
2013-01-19 Steinar H.... Optimize away duplicate conversion nodes.
2013-01-19 Steinar H.... Set pixel_data[] to NULL in YCbCrInput as well.
2013-01-19 Steinar H.... Another NULL initializer, mostly to get Coverity to...
2013-01-19 Steinar H.... Initialize pixel_data in FlatInput to NULL.
2013-01-19 Steinar H.... Add unit tests for GlowEffect.
2013-01-19 Steinar H.... Clamp alpha in MixEffect.
2013-01-18 Steinar H.... Force the LC_NUMERIC locale temporarily to C in finaliz...
2013-01-17 Steinar H.... Write PNGs instead of PPMs, so that we get destination...
2013-01-17 Steinar H.... Add missing unit test.
2013-01-17 Steinar H.... Remove some leftover debugging code.
2013-01-17 Steinar H.... Add an effect for padding.
2013-01-17 Steinar H.... Add support for vec4 uniforms.
2013-01-16 Steinar H.... There are reports that Movit actually does work with...
2013-01-16 Steinar H.... Fix another issue where an input was used twice. Add...
2013-01-16 Steinar H.... Make output_dot() cope with effects that are in multipl...
2013-01-16 Steinar H.... Add an assert saying that if an input has premultiplied...
2013-01-16 Steinar H.... Print output node in the dot graphs.
2013-01-16 Steinar H.... Add an assert to expect_equal() to make sure people...
2013-01-16 Steinar H.... Fix a memory leak in expect_equal(). Found by Coverity...
2013-01-16 Steinar H.... Refactor RewritingTo{MirrorEffect,InvertEffect} into...
2013-01-15 Steinar H.... Fix two issues related to non-treelike (diamond) effect...
2013-01-14 Steinar H.... Small spelling fix.
2013-01-14 Steinar H....  Remove the code for postmultiplied alpha from OverlayE...
2013-01-14 Steinar H.... Correct atop → over in the README too.
2013-01-14 Steinar H.... Revert all the changes in demo.cpp that were never...
2013-01-14 Steinar H.... Add the rest of the files for the premultiplied alpha...
2013-01-14 Steinar H.... Make Movit work in premultiplied alpha.
2013-01-13 Steinar H.... When running make check, output which checks failed.
2013-01-13 Steinar H.... Fix an error in a comment; we are implementing over...
2013-01-13 Steinar H.... Fix alpha handling with sRGB textures.
2013-01-13 Steinar H.... Docmuent the GLEW requirement.
2013-01-13 Steinar H.... Updated list of filters in README.
2013-01-12 Steinar H.... Fix the name of the .dot file for the newly created...
2013-01-12 Steinar H.... Defer fetching inputs' color spaces and gamma to finali...
next