Compare commits

1 Commits
main ... 1.1

4 changed files with 13 additions and 23 deletions

BIN
eglexternalplatform-1.1.tar.gz LFS Normal file

Binary file not shown.

Binary file not shown.

View File

@@ -1,15 +1,3 @@
-------------------------------------------------------------------
Thu Sep 19 20:44:16 UTC 2024 - Stefan Dirsch <sndirsch@suse.com>
- update to release 1.2
* Change the shutdown behavior so that
EGLExtPlatformExports::unloadEGLExternalPlatform is called
while the internal EGLDisplays are still valid.
* Added a meson.build file to generate the pkg-config file. It's
also set up so that you can use eglexternalplatform as a Meson
subproject.
* Interface version 1.2 is supported on 560.* and later drivers.
-------------------------------------------------------------------
Mon Sep 27 13:47:11 UTC 2021 - Stefan Dirsch <sndirsch@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package eglexternalplatform
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,15 @@
Name: eglexternalplatform
Version: 1.2
Version: 1.1
Release: 0
Summary: The EGL External Platform interface
License: MIT
Group: Development/Libraries/C and C++
URL: https://github.com/NVIDIA/eglexternalplatform
Source0: https://github.com/NVIDIA/eglexternalplatform/archive/%{version}/%{name}-%{version}.tar.gz
BuildRequires: meson
BuildRequires: pkgconfig
BuildArch: noarch
%description
A work-in-progress specification of the EGL External Platform interface.
@@ -42,18 +43,19 @@ EGL functions.
%prep
%autosetup
%meson
%build
%meson_build
%install
%meson_install
install -d -m0755 %{buildroot}%{_datadir}/pkgconfig
install -d -m0755 %{buildroot}%{_includedir}/EGL
install -m0644 eglexternalplatform.pc %{buildroot}%{_datadir}/pkgconfig
install -m0644 interface/*.h %{buildroot}%{_includedir}/EGL
%files devel
%license COPYING
%doc README.md
%{_libdir}/pkgconfig/eglexternalplatform.pc
%{_includedir}/*.h
%{_datadir}/pkgconfig/eglexternalplatform.pc
%{_includedir}/EGL
%changelog