HN user

jrepin

1,168 karma

GNU, Linux, KDE, Free Software, Open Source

Posts108
Comments11
View on HN
www.kde.org 9y ago

Make the World a Better Place – KDE End of Year 2016 Fundraising

jrepin
5pts1
joinup.ec.europa.eu 9y ago

Open standards default at Slovenia supreme court

jrepin
1pts0
lwn.net 9y ago

Backports and long-term stable Linux kernels

jrepin
3pts0
www.kde.org 9y ago

KDE Kirigami 1.1 Released

jrepin
3pts0
juliareda.eu 9y ago

Victory for Net Neutrality in Europe

jrepin
547pts174
lkml.org 10y ago

Linux 4.7 Released

jrepin
226pts78
github.com 10y ago

RADV: An open-source Vulkan implementation for AMD graphics cards

jrepin
4pts1
www.defectivebydesign.org 10y ago

Web DRM moves to next phase, Defective by Design to continue opposition

jrepin
90pts51
dot.kde.org 10y ago

KDE neon User Edition 5.6 Available now

jrepin
2pts0
blog.qt.io 10y ago

Announcing the Qt Automotive Suite

jrepin
109pts63
www.fsf.org 10y ago

Ethics in, ethics out – promote user-respecting software development platforms

jrepin
1pts0
www.theguardian.com 10y ago

Tech Titans Are Busy Privatising Our Data

jrepin
2pts0
www.wired.com 10y ago

How the Rich and Powerful Use Tech to Silence Activists

jrepin
2pts0
www.kde.org 10y ago

KDE Plasma 5.6 Released

jrepin
3pts0
www.kde.org 10y ago

KDE Frameworks 5.20 Released

jrepin
2pts0
arstechnica.com 10y ago

Epic CEO: “Universal Windows Platform can, should, must, and will die”

jrepin
3pts0
k7r.eu 10y ago

No software patents in India

jrepin
2pts0
dot.kde.org 10y ago

KDE Community Announces Distribution Outreach Program

jrepin
2pts0
www.fsf.org 10y ago

Free Software Supporter Issue 95, March 2016

jrepin
2pts0
liliputing.com 10y ago

Intel’s Android smartphone prototype is also a Linux desktop PC

jrepin
17pts0
sflc.in 10y ago

Press Release: Indian Patent Office Says No to Software Patents

jrepin
1pts0
enterprisersproject.com 10y ago

What the Red Hat and FCC CIOs think about the future of technology

jrepin
1pts0
modelviewculture.com 10y ago

Tech Workers: Please Stop Defending Tech Companies

jrepin
5pts0
www.linuxfoundation.org 10y ago

OpenMainframe announces new investments, tech focus and internship program

jrepin
2pts0
www.automotivelinux.org 10y ago

4 New Members Join Automotive Grade Linux to Advance Connected Car Tech

jrepin
2pts0
news.opensuse.org 10y ago

OpenSUSE offers choices for KDE Git builds

jrepin
2pts0
www.kdab.com 10y ago

KD Chart 2.6.0 released

jrepin
2pts0
www.linuxfoundation.org 10y ago

The Linux Foundation Announces Project to Build Real-Time OS for IoT Devices

jrepin
41pts7
dot.kde.org 10y ago

Qt Is Guaranteed to Stay Free and Open – Legal Update

jrepin
6pts0
www.phoronix.com 10y ago

KDE Plasma 5.5: The Quintessential 2016 Review

jrepin
2pts0
[dead] 10 years ago

So it seems that for the price of a smartphone, you can now buy a 3D printer. I like the times that we live in.

Linux 4.7 Released 10 years ago

According to the info pages for last few releases, the most work was done by Diego Calleja <diegocg@gmail.com>

Announcement by Dave Airlie: https://lists.freedesktop.org/archives/mesa-dev/2016-July/12...

I was waiting for an open source driver to appear when I realised I should really just write one myself, some talking with Bas later, and we decided to see where we could get.

This is the point at which we were willing to show it to others, it's not really a vulkan driver yet, so far it's a vulkan triangle demos driver.

It renders the tri and cube demos from the vulkan loader, and the triangle demo from Sascha Willems demos and the Vulkan CTS smoke tests (all 4 of them one of which draws a triangle).

There is a lot of work to do, and it's at the stage where we are seeing if anyone else wants to join in at the start, before we make too many serious design decisions or take a path we really don't want to.

So far it's only been run on Tonga and Fiji chips I think, we are hoping to support radeon kernel driver for SI/CIK at some point, but I think we need to get things a bit further on VI chips first.

The code is currently here: https://github.com/airlied/mesa/tree/semi-interesting

There is a not-interesting branch which contains all the pre-history which might be useful for someone else bringing up a vulkan driver on other hardware.

The code is pretty much based on the Intel anv driver, with the winsys ported from gallium driver, and most of the state setup from there. Bas wrote the code to connect NIR<->LLVM IR so we could reuse it in the future for SPIR-V in GL if required. It also copies AMD addrlib over, (this should be shared).

Also we don't do SPIR-V->LLVM direct. We use NIR as it has the best chance for inter shader stage optimisations (vertex/fragment combined) which neither SPIR-V or LLVM handles for us, (nir doesn't do it yet but it can).

If you want to submit bug reports, they will only be taken seriously if accompanied by working patches at this stage, and we've no plans to merge to master yet, but open to discussion on when we could do that and what would be required.