Sync from SUSE:SLFO:Main eglexternalplatform revision e8a74a5f75bb0e491ccdf9c8e3f044ea

This commit is contained in:
Adrian Schröter 2024-10-29 09:33:11 +01:00
parent 0826c571dd
commit e61ccca2db
4 changed files with 23 additions and 13 deletions

BIN
eglexternalplatform-1.1.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
eglexternalplatform-1.2.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
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) 2021 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,15 +17,14 @@
Name: eglexternalplatform
Version: 1.1
Version: 1.2
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: pkgconfig
BuildArch: noarch
BuildRequires: meson
%description
A work-in-progress specification of the EGL External Platform interface.
@ -43,19 +42,18 @@ EGL functions.
%prep
%autosetup
%meson
%build
%meson_build
%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
%meson_install
%files devel
%license COPYING
%doc README.md
%{_datadir}/pkgconfig/eglexternalplatform.pc
%{_includedir}/EGL
%{_libdir}/pkgconfig/eglexternalplatform.pc
%{_includedir}/*.h
%changelog