summaryrefslogtreecommitdiff
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* Update .gitignoreNeil Roberts2013-11-291-0/+3
|
* Update .gitignoreJasper St. Pierre2013-09-021-1/+2
| | | | | | | | | (cherry picked from commit d749a28cb0293a6676b7c7e2dce34562ffdc1425) Conflicts: .gitignore Reviewed-by: Neil Roberts <neil@linux.intel.com>
* gitignore: config.env has changed placeDamien Lespiau2013-07-091-1/+1
| | | | and is now in tests/ to be used by all the different kind of tests.
* cogl-gst: Add some documentationNeil Roberts2013-04-251-0/+13
| | | | | | | | | | | | | | Adds documentation comments to CoglGstVideoSink and makes it generate a separate manual to contain it. One thing that I wasn't able to figure out with this was how to get the documentation to have correct references to the main Cogl docs. You can pass arguments to gtkdoc-fixxref to point to other manuals, but presumably this needs the installed locations and when the Cogl-Gst documentation is generated the Cogl docs may not have been installed yet. Reviewed-by: Robert Bragg <robert@linux.intel.com>
* gitignore: Ignore the examples/cogl-gles2-gears executableEmanuele Aina2013-04-231-0/+1
| | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=697330 Reviewed-by: Robert Bragg <robert@linux.intel.com> Reviewed-by: Neil Roberts <neil@linux.intel.com>
* build: Use LT_LIB_M to find the math library in a portable wayEmanuele Aina2013-04-231-0/+1
| | | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=697330 Reviewed-by: Robert Bragg <robert@linux.intel.com> Reviewed-by: Neil Roberts <neil@linux.intel.com>
* Include CoglGstPlamena Manolova2013-03-191-0/+1
| | | | | | | | | | | | CoglGst is a GStreamer integration library that facilitates video playback using the Cogl API. It works by retrieving each video frame from the GStreamer pipeline and attaching it to a Cogl pipeline in the form of a Cogl texture along with possible color model conversion shaders. The pipeline is then retrieved by the user during each draw. An example use of the CoglGst API is included in the examples directory. Reviewed-by: Neil Roberts <neil@linux.intel.com>
* build: Allow to build cogl without an external glib dependencyDamien Lespiau2012-09-241-0/+4
| | | | | | | | | | | | This commit pushes --disable-glib to the extreme of embedding the par of glib cogl depends on in tree to be able to generate a DSO that does not depend on an external glib. To do so, it: - keeps a lot of glib's configure.ac in as-glibconfig.m4 - pulls the code cogl depends on and the necessary dependencies Reviewed-by: Robert Bragg <robert@linux.intel.com>
* gitignore: Only ignore the README file at the root of the repositoryDamien Lespiau2012-09-131-1/+1
| | | | | | | We should be able to modify/add README files else where in the tree and see them with git status, eg build/mingw/README. Reviewed-by: Neil Roberts <neil@linux.intel.com>
* gitignore: Ignore the new and generated cogl-egl-defines.hDamien Lespiau2012-09-131-0/+1
| | | | Reviewed-by: Neil Roberts <neil@linux.intel.com>
* Update .gitignoreDamien Lespiau2012-05-251-26/+19
| | | | | | | The usual suspects (more examples ans tests, generated headers) and the documentation updated to the cogl2 name. Reviewed-by: Robert Bragg <robert@linux.intel.com>
* Update .gitignoreNeil Roberts2012-03-201-5/+7
| | | | Reviewed-by: Robert Bragg <robert@linux.intel.com>
* Update .gitignoreJasper St. Pierre2012-02-141-4/+15
| | | | Reviewed-by: Neil Roberts <neil@linux.intel.com>
* VS 2008/2010 project files to build CoglChun-wei Fan2011-11-251-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These are the VS 2008/2010 project files to build Cogl, with a README.txt to explain the process involved. Note that the Cogl and Cogl-Pango projects (and filters for VS2010) are expanded with the correct source file listings during "make dist", which is done to simplify maintenance of these project files. -added preconfigured config.h(.win32.in), which is expanded with the correct versioining info during autogen -added preconfigued cogl/cogl-defines.h.win32 -added symbols files for cogl and cogl-pango -Have configure.ac expand the config.h.win32.in into config.h.win32 with the correct versioning info, etc, and to include the Visual C++ project files for distribution -Added rules in cogl/Makefile.am to expand the cogl VS 2008/2010 projects and filters from the templates with up-to-date source file listings, to distribute cogl-enum-types.c, cogl-enum-types.h to ease compilation and to avoid depending on PERL on Windows installations. -Added rules in cogl-pango/Makefile.am to expand the cogl-pango VS2008/ 2010 projects and filters from the templates with up-to-date source file listings. -Added/edited various Makefile.am's in build to distribute the VS2008/2010 project files and associated items required for the build. -Update .gitignore. There needs to be a pre-configured config.h(.win32) and its template, config.h.win32.in for Visual C++ builds https://bugzilla.gnome.org/show_bug.cgi?id=650020 Reviewed-by: Neil Roberts <neil@linux.intel.com>
* egl-gdl: Don't generate cogl-display.hDamien Lespiau2011-08-011-1/+0
| | | | | | | | | | | | | | | | It's not necessary to generate cogl-display.h just for the GDL backend and to change the inclusion of libgdl.h. We can just tweak the include CFLAGS to put /usr/include/CE4100 in the search path when needed. Previously this did not work because of a stay ',' at the end of the COGL_EXTRA_CFLAGS int he configure.ac. This actually simplifies the code, which is always good. This also fixes out of tree builds. https://bugzilla.gnome.org/show_bug.cgi?id=655724 Reviewed-by: Neil Roberts <neil@linux.intel.com>
* gitignore: Ignore examples/x11-ftpDamien Lespiau2011-07-291-0/+1
|
* egl-gdl: Correctly substitute COGL_CEX100_LIBGDL_PREFIXDamien Lespiau2011-07-291-0/+1
| | | | | | | | We weren't defining CLUTTER_CEX100_LIBGDL_PREFIX in the configure.ac and thus failing to compile when selecting the EGL/GDL winsys. Take the opportunity to rename that to COGL_CEX100_LIBGDL_PREFIX https://bugzilla.gnome.org/show_bug.cgi?id=655355
* dist: Don't use elaborate script to gen ChangelogsRobert Bragg2011-07-201-1/+0
| | | | | | The changelog generation scripts used for releases are overly elaborate and fragile. A Changelog is also no substitute for the Git log so now we simply ship a static Changelog that points to the Git log instead.
* Add some generated files to the gitignore listEmmanuele Bassi2011-07-131-1/+1
|
* Adds examples/crate to .gitignoreRobert Bragg2011-07-111-0/+1
|
* Make it clearer that the 2.0 API is experimentalRobert Bragg2011-06-141-13/+13
| | | | | | | This explicitly renames the cogl-2.0 reference manual to cogl-2.0-experimental and renames the cogl-2.0 pkg-config file to cogl-2.0-experimental.pc. Hopefully this should avoid miss-understandings.
* gitignore: Ignore *.exe filesDamien Lespiau2011-05-121-0/+1
|
* gitignore: Update .gitignore to make git status silent againDamien Lespiau2011-05-061-0/+5
|
* Adds an initial .gitignoreRobert Bragg2011-05-061-0/+85
This adds a .gitignore file to the top of the repo