summaryrefslogtreecommitdiff
path: root/cogl-gles2
Commit message (Collapse)AuthorAgeFilesLines
* build: update to build with automake 1.13Robert Bragg2013-01-211-2/+2
| | | | | | | | | | This make autogen.sh look for automake-1.13 and also updates all Makefile.am files to no longer use the INCLUDES variable which automake 1.13 warns is deprecated by AM_CPPFLAGS. https://bugzilla.gnome.org/show_bug.cgi?id=690891 Reviewed-by: Neil Roberts <neil@linux.intel.com>
* build: don't include deps/glib headers if glib enabledRobert Bragg2012-09-241-2/+5
| | | | | | | | If we're using the system glib library then we need to make sure not to include headers under deps/glib otherwise we end up with with incompatible typedefs that break the build. Reviewed-by: Neil Roberts <neil@linux.intel.com>
* build: Allow to build cogl without an external glib dependencyDamien Lespiau2012-09-241-2/+3
| | | | | | | | | | | | 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>
* cogl-gles2: Add glTexParameterf to wrapper libraryTomeu Vizoso2012-06-201-0/+7
| | | | Reviewed-by: Neil Roberts <neil@linux.intel.com>
* Adds libcogl-gles2 frontend GLES2 apiRobert Bragg2012-05-176-0/+2778
This adds a library that can be used instead of libGLESv2.so to provide symbols for the GLES 2.0 api. This can be used for convenience when using the cogl_gles2_context_ api since you don't need to manually go through a CoglGLES2Vtable when calling the gles2 api so it should be easier to port existing gles2 code to integrate with Cogl. Reviewed-by: Neil Roberts <neil@linux.intel.com>