Skip to content
This repository has been archived by the owner on Jan 7, 2023. It is now read-only.

Commit

Permalink
ias: Initial commit
Browse files Browse the repository at this point in the history
This is the first commit for Intel Automotive Solution Compositor
for Wayland. This compositor showcases how best to use Intel
graphics and display engines for automotive use cases.

A Wayland compositor usually has a shell, a backend and the core
parts (like the renderer). Shell is responsible for the look and
feel. For example, the xdg shell is meant for desktops. We have
replaced it with ias shell for automotive purposes. Backend is
responsible for communicating with the DRM, memory and input
management. We have replaced the default drm-backend with
ias-backend as it show cases how to make use of multiple HW planes,
use display controller specific functionality, offload GPU etc.
Finally, we have introduced a plugin framework which allows a
customer to completely overtake the layout and input management
capabilities of the compositor, such that with a small amount of
code, a layout plugin can overhault the look and feel of the
display from one frame to the next, and with an input plugin, they
can redirect input events to any surface/s.

Signed-off-by: Satyeshwar Singh <[email protected]>
  • Loading branch information
satyeshwar committed Aug 3, 2018
0 parents commit 7e26355
Show file tree
Hide file tree
Showing 465 changed files with 200,445 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
project (weston)
include(ExternalProject)

set(BASE_VERSION_MAJOR 1)
set(BASE_VERSION_MINOR 10)
set(BASE_VERSION_REVISION 0)


30 changes: 30 additions & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
Copyright © 2008-2012 Kristian Høgsberg
Copyright © 2010-2012 Intel Corporation
Copyright © 2010-2011 Benjamin Franzke
Copyright © 2011-2012 Collabora, Ltd.
Copyright © 2010 Red Hat <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice (including the next
paragraph) shall be included in all copies or substantial portions of the
Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

---

The above is the version of the MIT "Expat" License used by X.org:

http://cgit.freedesktop.org/xorg/xserver/tree/COPYING
Loading

0 comments on commit 7e26355

Please sign in to comment.