diff options
author | Bas Nieuwenhuizen <[email protected]> | 2018-08-08 22:23:57 +0000 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2019-03-11 10:01:15 -0700 |
commit | 26380b3a9f8fd513dc4da86798f3c15191914fc2 (patch) | |
tree | 1749fb5529155b2f5175a54bd1e011b4f9a73386 /src/meson.build | |
parent | d086d16b8165244db53f20dbf60c921f4bb38f38 (diff) |
turnip: Add driver skeleton (v2)
meson files have been updated, autotools and android still need
updating.
Only build tested.
v2 (chadv):
- Rebase onto master.
- Fix build breakage in Python scripts.
- Drop the WSI code. The internal WSI apis have changed recently, and
will likely change again before the driver goes upstream. To avoid
unnecessary rebase work, let's drop the WSI code and re-add it when
we're ready to really use WSI.
(olv, after rebase) do not enable freedreno by default on ARM
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build index 7f537b7094f..6d04b5fc3b2 100644 --- a/src/meson.build +++ b/src/meson.build @@ -64,7 +64,7 @@ endif if with_gallium_vc4 or with_gallium_v3d subdir('broadcom') endif -if with_gallium_freedreno +if with_gallium_freedreno or with_freedreno_vk subdir('freedreno') endif if with_dri_i965 or with_intel_vk or with_gallium_iris |