summaryrefslogtreecommitdiff
path: root/ext/libvisual
Commit message (Collapse)AuthorAgeFilesLines
* [838/906] gl: Use GL_TEXTURE_2D instead of GL_TEXTURE_RECTANGLEMatthew Waters2014-03-151-4/+4
| | | | | | | | | | | We create our textures (in Desktop GL) with GL_TEXTURE_RECTANGLE, vaapi attempts to bind our texture to GL_TEXTURE_2D which throws a GL_INVALID_OPERATION error and as thus, no video. Also, by moving exclusively to GL_TEXTURE_2D and the npot extension we also remove a difference between the Desktop GL and GLES2 code. https://bugzilla.gnome.org/show_bug.cgi?id=712287
* [717/906] remove outdated cmake build filesMatthew Waters2014-03-151-15/+0
|
* [704/906] Use gst_object_[un]ref so we can get refcounts in the logMatthew Waters2014-03-151-3/+3
|
* [604/906] gst_element_class_set_details_simple() => ↵Matthew Waters2014-03-151-1/+1
| | | | gst_element_class_set_metadata()
* [603/906] update FSF addressMatthew Waters2014-03-151-2/+2
|
* [544/906] fix memory leaks from not g_free()ing string returned by ↵Matthew Waters2014-03-151-6/+13
| | | | gst_element_get_name
* [502/906] Update versioning for gstreamer 1.0Matthew Waters2014-03-151-1/+1
| | | | | Renames GST_MAJORMINOR to GST_API_VERSION in build files removes -lgstinterfaces from _LDADD flags
* [488/906] libvisual-gl: full compatibility with projectM-libvisual if ↵Julien Isorce2014-03-151-21/+57
| | | | | | libprojectM >= 2.0.1 Fix bug #310775
* [486/906] libvisual-gl: add minimal support to libvisual plugins that uses ↵Julien Isorce2014-03-151-4/+55
| | | | | | | | | | | | | | Framebuffer objects Fix bug #310775 gst-launch audiotestsrc ! libvisual_gl_projectM ! glimagesink is working but for now you cannot append any other opengl filters between libvisual_gl_projectM and glimagesink because our FBO is turned OFF. It would require that libvisual allows to split rendering between pass1,2,3... and final rendering. In order to unbind our FBO before the passN, and then rebind it just before the final libvisual rendering.
* [484/906] libvisual_gl: correctly setup depth and blend functionsJulien Isorce2014-03-151-0/+13
|
* [482/906] ext: Add a libvisual plugin wrapping opengl libvisualJonathan Matthew2014-03-153-0/+1173
Fix bug #202069