c87ff6
%global with_tests 1
c87ff6
c87ff6
Name:          cogl
c87ff6
Version:       1.22.8
c87ff6
Release:       5%{?dist}
c87ff6
Summary:       A library for using 3D graphics hardware to draw pretty pictures
c87ff6
c87ff6
License:       LGPLv2+
c87ff6
URL:           http://www.clutter-project.org/
c87ff6
Source0:       http://download.gnome.org/sources/cogl/1.22/cogl-%{version}.tar.xz
c87ff6
c87ff6
# Vaguely related to https://bugzilla.gnome.org/show_bug.cgi?id=772419
c87ff6
# but on the 1.22 branch, and the static inline in the header is gross
c87ff6
# ajax promises he'll clean this up.
c87ff6
Patch0: 0001-egl-Use-eglGetPlatformDisplay-not-eglGetDisplay.patch
c87ff6
c87ff6
# "GL_ARB_shader_texture_lod" is used to do lod biased texturing. It
c87ff6
# make achieve faster blurring of images instead of using large blur radius.
c87ff6
Patch1: 0002-add-GL_ARB_shader_texture_lod-support.patch
c87ff6
c87ff6
# "copy_sub_image" is used to implement feature similar with kwin blur
c87ff6
# effect by being abel to copy partial of framebuffer contents as texture
c87ff6
# and do post blurring.
c87ff6
Patch2: 0003-texture-support-copy_sub_image.patch
c87ff6
c87ff6
BuildRequires: chrpath
c87ff6
BuildRequires: pkgconfig(cairo)
c87ff6
BuildRequires: mesa-libEGL-devel
c87ff6
BuildRequires: pkgconfig(gbm)
c87ff6
BuildRequires: pkgconfig(gdk-pixbuf-2.0)
c87ff6
BuildRequires: pkgconfig(gl)
c87ff6
BuildRequires: pkgconfig(glib-2.0)
c87ff6
BuildRequires: pkgconfig(gobject-introspection-1.0)
c87ff6
BuildRequires: pkgconfig(gtk-doc)
c87ff6
BuildRequires: pkgconfig(libdrm)
c87ff6
BuildRequires: pkgconfig(pango)
c87ff6
BuildRequires: pkgconfig(xcomposite)
c87ff6
BuildRequires: pkgconfig(xdamage)
c87ff6
BuildRequires: pkgconfig(xext)
c87ff6
BuildRequires: pkgconfig(xfixes)
c87ff6
BuildRequires: pkgconfig(xrandr)
c87ff6
c87ff6
BuildRequires: pkgconfig(wayland-server)
c87ff6
BuildRequires: pkgconfig(wayland-client)
c87ff6
BuildRequires: pkgconfig(wayland-cursor)
c87ff6
BuildRequires: pkgconfig(wayland-egl)
c87ff6
BuildRequires: pkgconfig(xkbcommon)
c87ff6
BuildRequires: make
c87ff6
c87ff6
%description
c87ff6
Cogl is a small open source library for using 3D graphics hardware to draw
c87ff6
pretty pictures. The API departs from the flat state machine style of
c87ff6
OpenGL and is designed to make it easy to write orthogonal components that
c87ff6
can render without stepping on each others toes.
c87ff6
c87ff6
As well aiming for a nice API, we think having a single library as opposed
c87ff6
to an API specification like OpenGL has a few advantages too; like being
c87ff6
able to paper over the inconsistencies/bugs of different OpenGL
c87ff6
implementations in a centralized place, not to mention the myriad of OpenGL
c87ff6
extensions. It also means we are in a better position to provide utility
c87ff6
APIs that help software developers since they only need to be implemented
c87ff6
once and there is no risk of inconsistency between implementations.
c87ff6
c87ff6
Having other backends, besides OpenGL, such as drm, Gallium or D3D are
c87ff6
options we are interested in for the future.
c87ff6
c87ff6
%package devel
c87ff6
Summary:       %{name} development environment
c87ff6
Requires:      %{name}%{?_isa} = %{version}-%{release}
c87ff6
c87ff6
%description devel
c87ff6
Header files and libraries for building and developing apps with %{name}.
c87ff6
c87ff6
%package       doc
c87ff6
Summary:       Documentation for %{name}
c87ff6
Requires:      %{name} = %{version}-%{release}
c87ff6
BuildArch:     noarch
c87ff6
c87ff6
%description   doc
c87ff6
This package contains documentation for %{name}.
c87ff6
c87ff6
%if 0%{?with_tests}
c87ff6
%package       tests
c87ff6
Requires:      %{name} = %{version}-%{release}
c87ff6
Summary:       Tests for %{name}
c87ff6
c87ff6
%description   tests
c87ff6
This package contains the installable tests for %{cogl}.
c87ff6
%endif
c87ff6
c87ff6
%prep
c87ff6
%autosetup -p1
c87ff6
c87ff6
%build
c87ff6
CFLAGS="$RPM_OPT_FLAGS -fPIC"
c87ff6
%configure \
c87ff6
  --enable-cairo=yes \
c87ff6
  --enable-cogl-pango=yes \
c87ff6
  --enable-gdk-pixbuf=yes \
c87ff6
  --enable-glx=yes \
c87ff6
  --enable-gtk-doc \
c87ff6
  --enable-introspection=yes \
c87ff6
  --enable-kms-egl-platform \
c87ff6
  --enable-wayland-egl-platform \
c87ff6
  --enable-wayland-egl-server \
c87ff6
  --enable-xlib-egl-platform \
c87ff6
  %{?with_tests:--enable-installed-tests}
c87ff6
c87ff6
make %{?_smp_mflags} V=1
c87ff6
c87ff6
%install
c87ff6
%make_install
c87ff6
c87ff6
#Remove libtool archives.
c87ff6
find %{buildroot} -name '*.la' -delete
c87ff6
c87ff6
# This gets installed by mistake
c87ff6
rm %{buildroot}%{_datadir}/cogl/examples-data/crate.jpg
c87ff6
c87ff6
# Remove lib64 rpaths
c87ff6
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libcogl-path.so
c87ff6
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libcogl-pango.so
c87ff6
c87ff6
%find_lang %{name}
c87ff6
c87ff6
%check
c87ff6
# make check
c87ff6
c87ff6
%ldconfig_scriptlets
c87ff6
c87ff6
%files -f %{name}.lang
c87ff6
%license COPYING
c87ff6
%doc NEWS README
c87ff6
%{_libdir}/libcogl*.so.20*
c87ff6
%{_libdir}/girepository-1.0/Cogl*.typelib
c87ff6
c87ff6
%files devel
c87ff6
%{_includedir}/cogl
c87ff6
%{_libdir}/libcogl*.so
c87ff6
%{_libdir}/pkgconfig/*.pc
c87ff6
%{_datadir}/gir-1.0/Cogl*.gir
c87ff6
c87ff6
%files doc
c87ff6
%{_datadir}/gtk-doc/html/cogl
c87ff6
%{_datadir}/gtk-doc/html/cogl-2.0-experimental
c87ff6
c87ff6
%if 0%{?with_tests}
c87ff6
%files tests
c87ff6
%{_datadir}/installed-tests/%{name}
c87ff6
%{_libexecdir}/installed-tests/%{name}
c87ff6
%endif
c87ff6
c87ff6
%changelog
c87ff6
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.22.8-5
c87ff6
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
c87ff6
  Related: rhbz#1991688
c87ff6
c87ff6
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.22.8-4
c87ff6
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
c87ff6
c87ff6
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.8-3
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
c87ff6
c87ff6
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.8-2
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
c87ff6
c87ff6
* Thu Jun 04 2020 Kalev Lember <klember@redhat.com> - 1.22.8-1
c87ff6
- Update to 1.22.8
c87ff6
c87ff6
* Mon Mar 09 2020 Kalev Lember <klember@redhat.com> - 1.22.6-1
c87ff6
- Update to 1.22.6
c87ff6
c87ff6
* Sat Mar 07 2020 Leigh Scott <leigh123linux@gmail.com> - 1.22.4-4
c87ff6
- Fix building against libglvnd-provided EGL headers
c87ff6
c87ff6
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.4-3
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
c87ff6
c87ff6
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.4-2
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
c87ff6
c87ff6
* Wed Apr 24 2019 Peter Robinson <pbrobinson@fedoraproject.org> 1.22.4-1
c87ff6
- Update to 1.22.4
c87ff6
c87ff6
* Tue Apr 16 2019 Adam Williamson <awilliam@redhat.com> - 1.22.2-13
c87ff6
- Backport MR#8 to fix builds of cogl-using packages in F31+
c87ff6
c87ff6
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.2-12
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
c87ff6
c87ff6
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.2-11
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
c87ff6
c87ff6
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.2-10
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c87ff6
c87ff6
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.22.2-9
c87ff6
- Switch to %%ldconfig_scriptlets
c87ff6
c87ff6
* Wed Nov 22 2017 Troy Dawson <tdawson@redhat.com> - 1.22.2-8
c87ff6
- Fix spec file conditionals
c87ff6
c87ff6
* Thu Sep 28 2017 mosquito <sensor.wen@gmail.com> - 1.22.2-7
c87ff6
- Add GL_ARB_shader_texture_lod and copy_sub_image support (#1421055)
c87ff6
- Add pkgconfig(egl) BReq for rawhide
c87ff6
- Move BReqs to pkgconfig
c87ff6
c87ff6
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.2-6
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
c87ff6
c87ff6
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.2-5
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c87ff6
c87ff6
* Wed May 17 2017 Owen Taylor <otaylor@redhat.com> - 1.22.2-4
c87ff6
- Add Requires: %%{name} = %%{version}-%%{release} to the tests subpackage
c87ff6
c87ff6
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.2-3
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c87ff6
c87ff6
* Tue Oct 11 2016 Adam Jackson <ajax@redhat.com> - 1.22.2-2
c87ff6
- Prefer eglGetPlatformDisplay to eglGetDisplay
c87ff6
c87ff6
* Fri Aug 26 2016 Kalev Lember <klember@redhat.com> - 1.22.2-1
c87ff6
- Update to 1.22.2
c87ff6
- Don't set group tags
c87ff6
c87ff6
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.0-3
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c87ff6
c87ff6
* Wed Oct 21 2015 Ray Strode <rstrode@redhat.com> 1.22.0-2
c87ff6
- Fix black login screen
c87ff6
  Resolves: #1272737
c87ff6
c87ff6
* Wed Sep 16 2015 Kalev Lember <klember@redhat.com> - 1.22.0-1
c87ff6
- Update to 1.22.0
c87ff6
c87ff6
* Fri Aug 21 2015 Kalev Lember <klember@redhat.com> - 1.21.2-2
c87ff6
- Re-enable parallel make
c87ff6
c87ff6
* Fri Aug 21 2015 Kalev Lember <klember@redhat.com> - 1.21.2-1
c87ff6
- Update to 1.21.2
c87ff6
- Use make_install macro
c87ff6
- Mark COPYING as %%license
c87ff6
- Drop large ChangeLog file
c87ff6
c87ff6
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.20.0-4
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c87ff6
c87ff6
* Mon Mar 23 2015 Ray Strode <rstrode@redhat.com> 1.20.0-3
c87ff6
- Update to upstreamed version of mgag200 fix
c87ff6
c87ff6
* Wed Mar 11 2015 Ray Strode <rstrode@redhat.com> 1.20.0-2
c87ff6
- Try to fix wayland on mgag200
c87ff6
c87ff6
* Mon Feb 23 2015 Kalev Lember <kalevlember@gmail.com> - 1.20.0-1
c87ff6
- Update to 1.20.0
c87ff6
c87ff6
* Tue Jan 20 2015 Peter Robinson <pbrobinson@fedoraproject.org> 1.18.2-10
c87ff6
- Enable tests subpackage (rhbz 1163429)
c87ff6
c87ff6
* Sun Nov 16 2014 Kalev Lember <kalevlember@gmail.com> - 1.18.2-9
c87ff6
- Obsolete compat-cogl116 from rhughes-f20-gnome-3-12 copr
c87ff6
c87ff6
* Thu Nov 13 2014 Kalev Lember <kalevlember@gmail.com> - 1.18.2-8
c87ff6
- Disable cogl-gst as long as we don't have clutter-gst3 (#1158676)
c87ff6
c87ff6
* Sat Nov 01 2014 Richard Hughes <rhughes@redhat.com> - 1.18.2-7
c87ff6
- Fix compile on RHEL, harder
c87ff6
c87ff6
* Mon Oct 27 2014 Richard Hughes <rhughes@redhat.com> - 1.18.2-6
c87ff6
- Fix compile on RHEL
c87ff6
c87ff6
* Fri Aug 22 2014 Kalev Lember <kalevlember@gmail.com> - 1.18.2-5
c87ff6
- Remove lib64 rpaths (#1132876)
c87ff6
c87ff6
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
c87ff6
c87ff6
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 1.18.2-3
c87ff6
- Rebuilt for gobject-introspection 1.41.4
c87ff6
c87ff6
* Fri Jul 11 2014 Peter Robinson <pbrobinson@fedoraproject.org> 1.18.2-2
c87ff6
- Run make check but don't fail build on it
c87ff6
c87ff6
* Fri Jul 04 2014 Kalev Lember <kalevlember@gmail.com> - 1.18.2-1
c87ff6
- Update to 1.18.2
c87ff6
c87ff6
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.18.0-4
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c87ff6
c87ff6
* Fri May 23 2014 Kalev Lember <kalevlember@gmail.com> - 1.18.0-3
c87ff6
- Backport an upstream fix for a totem crash
c87ff6
c87ff6
* Thu May 08 2014 Adam Jackson <ajax@redhat.com>
c87ff6
- Add optional installed-tests subpackage
c87ff6
c87ff6
* Mon Apr 28 2014 Richard Hughes <rhughes@redhat.com> - 1.18.0-2
c87ff6
- Build with --enable-cogl-gst
c87ff6
c87ff6
* Fri Mar 21 2014 Kalev Lember <kalevlember@gmail.com> - 1.18.0-1
c87ff6
- Update to 1.18.0
c87ff6
c87ff6
* Fri Mar 21 2014 Kalev Lember <kalevlember@gmail.com> - 1.17.5-1.gitbb10532
c87ff6
- Update to 1.17.5 git snapshot
c87ff6
c87ff6
* Fri Feb 21 2014 Kalev Lember <kalevlember@gmail.com> - 1.17.4-2
c87ff6
- Drop compat-libcogl19
c87ff6
c87ff6
* Thu Feb 20 2014 Kalev Lember <kalevlember@gmail.com> - 1.17.4-1
c87ff6
- Update to 1.17.4, which includes soname bump
c87ff6
- Build a temporary compat-libcogl19 subpackage to ease the rebuilds
c87ff6
c87ff6
* Wed Feb 05 2014 Richard Hughes <rhughes@redhat.com> - 1.17.2-1
c87ff6
- Update to 1.17.2
c87ff6
c87ff6
* Tue Jan 21 2014 Richard Hughes <rhughes@redhat.com> - 1.16.2-1
c87ff6
- Update to 1.16.2
c87ff6
c87ff6
* Wed Sep 25 2013 Dan Horák <dan[at]danny.cz> - 1.16.0-2
c87ff6
- fix build on big endians (#1011893)
c87ff6
c87ff6
* Tue Sep 24 2013 Kalev Lember <kalevlember@gmail.com> - 1.16.0-1
c87ff6
- Update to 1.16.0
c87ff6
c87ff6
* Thu Sep 12 2013 Kalev Lember <kalevlember@gmail.com> - 1.15.10-3
c87ff6
- More configure options for enabling the gnome-shell Wayland compositor
c87ff6
- Enable parallel build
c87ff6
c87ff6
* Tue Sep 10 2013 Matthias Clasen <mclasen@redhat.com> - 1.15.10-2
c87ff6
- Add configure options that are needed to enable the gnome-shell
c87ff6
  Wayland compositor
c87ff6
c87ff6
* Mon Sep 02 2013 Kalev Lember <kalevlember@gmail.com> - 1.15.10-1
c87ff6
- Update to 1.15.10
c87ff6
c87ff6
* Thu Aug 22 2013 Kalev Lember <kalevlember@gmail.com> - 1.15.8-1
c87ff6
- Update to 1.15.8
c87ff6
c87ff6
* Fri Aug 09 2013 Kalev Lember <kalevlember@gmail.com> - 1.15.4-1
c87ff6
- Update to 1.15.4
c87ff6
c87ff6
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14.0-4
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
c87ff6
c87ff6
* Wed Jun 12 2013 Kalev Lember <kalevlember@gmail.com> 1.14.0-3
c87ff6
- Rebuilt
c87ff6
c87ff6
* Wed May 22 2013 Adam Jackson <ajax@redhat.com> 1.14.0-2
c87ff6
- cogl-1.14.0-21-ge26464f.patch: Sync with 1.14 branch for a crash fix.
c87ff6
c87ff6
* Mon Mar 25 2013 Kalev Lember <kalevlember@gmail.com> 1.14.0-1
c87ff6
- Update to 1.14.0
c87ff6
c87ff6
* Wed Mar 13 2013 Matthias Clasen <mclasen@redhat.com> 1.13.4-2
c87ff6
- Enable wayland backend
c87ff6
c87ff6
* Thu Feb 21 2013 Bastien Nocera <bnocera@redhat.com> 1.13.4-1
c87ff6
- Update to 1.13.4
c87ff6
c87ff6
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.13.2-2
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
c87ff6
c87ff6
* Thu Jan 24 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.13.2-1
c87ff6
- Update to 1.13.2
c87ff6
c87ff6
* Mon Jan  7 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.12.2-1
c87ff6
- Update to 1.12.2
c87ff6
c87ff6
* Tue Sep 25 2012 Kalev Lember <kalevlember@gmail.com> - 1.12.0-1
c87ff6
- Update to 1.12.0
c87ff6
c87ff6
* Tue Sep 18 2012 Kalev Lember <kalevlember@gmail.com> - 1.11.6-1
c87ff6
- Update to 1.11.6
c87ff6
- Drop upstreamed cogl-1.11.4-mesa-strings.patch
c87ff6
c87ff6
* Mon Sep 17 2012 Adam Jackson <ajax@redhat.com> 1.11.4-2
c87ff6
- cogl-1.11.4-mesa-strings.patch: Update match strings for Mesa.
c87ff6
c87ff6
* Mon Sep  3 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.11.4-1
c87ff6
- Update to 1.11.4
c87ff6
c87ff6
* Tue Aug 21 2012 Richard Hughes <hughsient@gmail.com> - 1.11.2-1
c87ff6
- Update to 1.11.2
c87ff6
c87ff6
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.4-2
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c87ff6
c87ff6
* Wed Jul 18 2012 Kalev Lember <kalevlember@gmail.com> - 1.10.4-1
c87ff6
- Update to 1.10.4
c87ff6
- Dropped no-framebuffer-blit patch which is included in the release
c87ff6
c87ff6
* Thu Apr 19 2012 Adel Gadllah <adel.gadllah@gmail.com> - 1.10.2-1
c87ff6
- Update to 1.10.2
c87ff6
c87ff6
* Tue Mar 20 2012 Kalev Lember <kalevlember@gmail.com> - 1.10.0-1
c87ff6
- Update to 1.10.0
c87ff6
c87ff6
* Sat Mar 10 2012 Matthias Clasen <mclasen@redhat.com> - 1.9.8-1
c87ff6
- Update to 1.9.8
c87ff6
c87ff6
* Sat Feb 25 2012 Matthias Clasen <mclasen@redhat.com> - 1.9.6-1
c87ff6
- Update to 1.9.6
c87ff6
c87ff6
* Tue Jan 17 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1.9.4-1
c87ff6
- Update to 1.9.4
c87ff6
- http://ftp.gnome.org/pub/GNOME/sources/cogl/1.9/cogl-1.9.4.news
c87ff6
c87ff6
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.2-2
c87ff6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
c87ff6
c87ff6
* Wed Nov 23 2011 Matthias Clasen <mclasen@redhat.com> 1.9.2-1
c87ff6
- Update to 1.9.2
c87ff6
c87ff6
* Thu Nov 03 2011 Adam Jackson <ajax@redhat.com> 1.8.2-4
c87ff6
- cogl-1.8.2-lp-no-framebuffer-blit.patch: Disable the subbuffer blit code
c87ff6
  when running on llvmpipe until it's unbroken.
c87ff6
c87ff6
* Tue Nov 01 2011 Adam Jackson <ajax@redhat.com> 1.8.2-3
c87ff6
- cogl-1.8.2-no-drm-hax.patch: Don't try insane direct DRM vblank wait.
c87ff6
c87ff6
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8.2-2
c87ff6
- Rebuilt for glibc bug#747377
c87ff6
c87ff6
* Mon Oct 17 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.8.2-1
c87ff6
- 1.8.2 stable release
c87ff6
- http://ftp.gnome.org/pub/GNOME/sources/cogl/1.8/cogl-1.8.2.news
c87ff6
- Enable gdk-pixbuf2 support - Fixes RHBZ # 738092
c87ff6
c87ff6
* Mon Sep 19 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.8.0-1
c87ff6
- 1.8.0 stable release
c87ff6
- http://ftp.gnome.org/pub/GNOME/sources/cogl/1.8/cogl-1.8.0.news
c87ff6
c87ff6
* Mon Sep  5 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7.8-1
c87ff6
- Update to 1.7.8
c87ff6
c87ff6
* Thu Aug 18 2011 Matthias Clasen <mclasen@redhat.com> - 1.7.6-1
c87ff6
- Update to 1.7.6
c87ff6
c87ff6
* Tue Jul 26 2011 Matthias Clasen <mclasen@redhat.com> - 1.7.4-1
c87ff6
- Update to 1.7.4
c87ff6
c87ff6
* Mon Jul  4 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7.2-1
c87ff6
- Update to 1.7.2
c87ff6
c87ff6
* Thu Jun 16 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7.0-3
c87ff6
- Update spec for review feedback
c87ff6
c87ff6
* Thu Jun 16 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7.0-2
c87ff6
- Update spec for review feedback
c87ff6
c87ff6
* Wed Jun 15 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7.0-1
c87ff6
- Initial Package