[Bug 3762] New: libglvnd - The GL Vendor-Neutral Dispatch library
by RPM Fusion Bugzilla
https://bugzilla.rpmfusion.org/show_bug.cgi?id=3762
Bug #: 3762
Summary: libglvnd - The GL Vendor-Neutral Dispatch library
Classification: Unclassified
Product: Package Reviews
Version: Current
Platform: All
OS/Version: GNU/Linux
Status: NEW
Severity: normal
Priority: P5
Component: Review Request
AssignedTo: rpmfusion-package-review(a)rpmfusion.org
ReportedBy: kwizart(a)gmail.com
CC: rpmfusion-package-review(a)rpmfusion.org
Group: Package Reviews
Spec URL: http://dl.kwizart.net/review/libglvnd.spec
SRPM URL: http://dl.kwizart.net/review/libglvnd-0.0.0-3git20150901.fc22.src.rpm
Description:
This is a work-in-progress implementation of the vendor-neutral dispatch layer
for arbitrating OpenGL API calls between multiple vendors on a per-screen
basis, as described by Andy Ritger's OpenGL ABI proposal.
Currently, only the GLX window-system API and OpenGL are supported, but in the
future this library may support EGL and OpenGL ES as well.
Fedora Account System Username: kwizart
This package is currently only supported on x86_64 i386 and armhfp
This package has been submitted for fedora, specially as it might be used by
mesa at some point.
Until approved or if there is any other issue preventing, it will better makes
senses in the nonfree section instead of the free section. This package is
currenly usefull for the nvidia nonfree driver in optimus setup.
--
Configure bugmail: https://bugzilla.rpmfusion.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
You are the assignee for the bug.
8 years, 5 months
el7 builds
by Orion Poplawski
Nicolas -
Can you submit el7 builds of:
- a52dec
- faad2
- libdca (after merge from master)
- libmpeg2
- twolame
- xvidcore (after merge from master)
They all appear to build fine.
Thanks.
--
Orion Poplawski
Technical Manager 303-415-9701 x222
NWRA, Boulder/CoRA Office FAX: 303-415-9702
3380 Mitchell Lane orion(a)nwra.com
Boulder, CO 80301 http://www.nwra.com
8 years, 5 months
Re: [kaffeine] Patch for gcc6 and cmake changes
by Mamoru TASAKA
Hello:
----- 元のメッセージ -----
> 差出人: "Orcan Ogetbil" <oget.fedora(a)gmail.com>
> 宛先: "RPM Fusion developers discussion list" <rpmfusion-developers(a)lists.rpmfusion.org>
> Cc: kaffeine-owner(a)rpmfusion.org
> 送信済み: 2016年6月29日, 水曜日 11:43:39
> 件名: Re: [kaffeine] Patch for gcc6 and cmake changes
>
> On 27 June 2016 at 02:57, Leigh Scott wrote:
> > commit ed8b668fc05a7f626d5d34e779f58be200b7884c
> > Author: leigh123linux
> > Date: Mon Jun 27 07:57:17 2016 +0100
>
> > +- char cmd[] = { 0xe0, 0x31, 0x6b, config->lnbNumber };
> > ++ char cmd[] = { char(0xe0), 0x31, 0x6b,
> > char(config->lnbNumber) };
>
> Hi, this looks like a compiler bug to me. I don't see anything
> ambiguous in the first line. Are we sure the compilation error is the
> intended behavior?
>
> Thanks,
> Orcan
>
I guess kaffeine is C++ and converting 0xe0 (this is (int)224) to char is
narrowing conversion, and implicit narrowing conversion on array initialization
is forbidden with gcc6 (i.e. C++14), so now gcc now makes the original
error.
Regards,
Mamoru
8 years, 5 months